SMART datagrid v.1 > Classes > GridBase
Specify the height of data row specified by row.
You can use setRowHeights when change the height of multiple rows at the same time.
Only if do not contain the column group of vertical layout which has more than one child column and DisplayOptions.variableRowHeight is true, the changed value will be reflected on the screen. In addition, if specify DisplayOptions.rowResizable or fixedRowResizable as true, the user can drag the bottom border of row in RowIndicator area with mouse to change the height of an individual row.
var row = grdMain.focusedRow();
if (row) {
var h = $('#edtRowHeight').val();
grid.setRowHeight(row, Math.max(4, Math.min(500, h)));
}