SMART datagrid v.1 > Classes > DisplayOptions

Back  Forward

DataLudi.DisplayOptions.fixedRowResizable  property

If it is true, when variableRowHeight is true, the user can change the height of fixed rows by dragging the mouse. 

If variableRowHeight is false, this property will be meaningless. 

Defaults to false.

Getter
function fixedRowResizable(): Boolean
Setter
function setFixedRowResizable(value: Boolean)
Code -1
    grid.setOptions({
        display: {
            varialbeRowHeight: true,
            fixedRowResizable: true
        }
    });
Code -2
    grid.setDisplayOptions({
        varialbeRowHeight: true,
        fixedRowResizable: true
    });
Code -3
    grid.displayOptions().setFixedRowResizable(true);
See Also
rowResizable
variableRowHeight
fixedRowCount
fixedColumnCount
Examples
Fixed Rows
Row Heights