SMART datagrid v.1 > Classes > EditOptions

Back  Forward

DataLudi.EditOptions.minEditorHeight  property

It specifies the minimum height of cell editor in pixels. 

Even if the height of cell is less than this value, the editor will still be displayed as this height. 

Defaults to 22.

Getter
function minEditorHeight(): Integer
Setter
function setMinEditorHeight(value: Integer)
Code -1
    grid.setOptions({
        edit: {
            minEditorHeight: 20
        }
    });
Code -2
    grid.setEditOptions({
        minEditorHeight: 20
    });
Code -3
    grid.editOptions().setMinEditorHeight(20);
See Also
DataColumn.editor
Examples
Cell Editing