SMART datagrid v.1 > Classes > GridBase
Display Editor in the cell location specified by parameter index. If do not specify index, it will be displayed in the location of Focused Cell.
onShowEditor event will be fired just before opening the editor. If explicitly return false within this event handler, it will not display the editor.
$('#showEditor').click(function () {
// Open the editor in the currently focused cell.
grid.showEditor();
}