SMART datagrid v.1 > Classes > DisplayOptions
The maximum height value of rows when the user updates the row height by dragging the mouse or the grid automatically calculates the row height.
It is specified in pixels. If it is 0, there will be no limit. You can specify the minimum height by minRowHeight.
Defaults to 0.
grid.setOptions({
display: {
maxRowHeight: 10,
minRowHeight: 10
}
});
grid.setDisplayOptions({
maxRowHeight: 10,
minRowHeight: 10
});
grid.displayOptions().setMaxRowHeight(10);