Hello!
I am using Handsontable with a lot of data, and it works very well, with only a little difficulty. I am using the “cells” function to do some validations the first time the table is loaded, and I no longer need it to be executed at other times. That is, every time I update the table, the cells function is called, even without need, because I only need it in the beginning. I simply tried to “check”, like this:
cells: function(){
if (isLoadingTable) {
...
}
}
But still there are still many cells so the delay is long. Therefore, I need to know if there is a way to completely remove the “cells” function after the first time it is executed for the whole table.
Thanks!