Hello Handsontable Community,
I am encountering an issue where integrating a validator with columnSummary in Handsontable disrupts the undo functionality !! ( the issue is when we make undo , it will not be affected !!  )
and i remove :
             validator: function (value, callback) {  
               if(!isNaN(Number(value))){
                 callback(true)
               } else {
                 callback(false)
               }
           }
and instead of that , i put { renderer: ‘text’ } , undo functionality works fine !! but i have to include validator ( this example is very simple , i know i can make renderer: ‘numeric’ )
. Below is the simplified version of my React component using Handsontable:
https://jsfiddle.net/monamrouche/u3cqr1fh/1/