SMART datagrid v.1 > Classes > EditOptions
It specifies the value which will be used as font size of cell editor as the format of containing CSS unit.
If set fontSize of individual editor as a nonempty value, this property will be ignored. You can specify the font name by fontName.
Defaults to "10pt".
grid.setOptions({
edit: {
fontSize: '11pt',
fontName: 'Courier New'
}
});
grid.setEditOptions({
fontSize: '11pt',
fontName: 'Courier New'
});
grid.editOptions().setFontSize('11pt');