I am currently working on an update of handsontable from version 7.4.2 to 8.2.0.
In certain places, I am using hiddenRows plugin within the code.
Below are the instructions provided in the documentation-
*Prior 8.0.0: *
hot.hasHook(‘hiddenRow’) && hot.runHooks(‘hiddenRow’, visualRow);
-
*
Now
-
*
hot.rowIndexMapper.isHidden(hot.toPhysicalRow(visualRow));
But I am using other methods of hiddenRows like showRows or showColumns (of hiddenColumns) which are not available in IndexMapper instance. Should I leave the code as is or should I consider making some change? Below is the sample code from my project-
const plugin: Handsontable.plugins.HiddenRows = this.getPlugin(‘hiddenRows’);
*** plugin.showRows(rowsToShow);***