Check documentation for the latest version of dhtmlxSuite setAwaitedRowHeight DHTMLX Docs

setAwaitedRowHeight

applies a custom height of a row which will be used in the smart rendering mode for row calculation

void setAwaitedRowHeight(number height);
heightnumberthe awaited height of a row

Example

mygrid.setAwaitedRowHeight(25);

Details

the function needs to be used if you use a custom skin which changes the default row height of the grid.

It can be called only after the setSkin method.

Back to top