SMART datagrid v.1 > Classes > EditOptions
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.
grid.setOptions({
edit: {
minEditorHeight: 20
}
});
grid.setEditOptions({
minEditorHeight: 20
});
grid.editOptions().setMinEditorHeight(20);