SMART datagrid v.1 > Classes > EditOptions

Back  Forward

DataLudi.EditOptions.useTabKey  property

If it is true, you can move among the cells by using tab key. 

Defaults to true.

Getter
function useTabKey(): Boolean
Setter
function setUseTabKey(value: Boolean)
Code -1
    grid.setOptions({
        edit: {
            useTabKey: false,
            enterToTab: true
        }
    });
Code -2
    grid.setEditOptions({
        useTabKey: false,
        enterToTab: true
    });
Code -3
    grid.editOptions().setUseTabKey(true);
See Also
moveByArrowKeys
enterToTab
Cell Editing Overview
Examples
Cell Editing