SMART datagrid v.1 > Classes > DisplayOptions

Back  Forward

DataLudi.DisplayOptions.rowResizable  property

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.

Getter
function rowResizable(): Boolean
Setter
function setRowResizable(value: Boolean)
Code -1
    grid.setOptions({
        display: {
            rowResizable: true,
            columnResizable: false
        }
    });
Code -2
    grid.setDisplayOptions({
        rowResizable: true,
        columnResizable: false
    });
Code -3
    grid.displayOptions().setRowResizable(true);
See Also
columnResizable
fixedRowResizable
variableRowHeight
GridBase.setRowHeight
Examples
Row Heights