SMART datagrid v.1 > Classes > DisplayOptions
It specifies whether to enable the user to change the height of rows by dragging the mouse on the bottom of the first row.
If variableRowHeight is true, you can change the height of individual data row.
Defaults to false.
grid.setOptions({
display: {
rowResizable: true,
columnResizable: false
}
});
grid.setDisplayOptions({
rowResizable: true,
columnResizable: false
});
grid.displayOptions().setRowResizable(true);