SMART datagrid v.1 > Classes > DisplayOptions
The object which calculates the height of column cells contained in the group when column group of which layout is VERICAL exists.
The default height measurer of grid adjusts the data cell height of all columns contained in the group equally at most. However, if specify this property as "fixed", you can specify the height differently in each column by using GridColumn.height and fillHeight property values.
Defaults to null.
grid.setOptions({
display: {
heightMeasurer: "fixed"
}
};
grid.setDisplayOptions({
heightMeasurer: "fixed"
});
grid.displayOptions().setHeightMeasurer("fixed");