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