I am looking to get dojo datagrid appear by default in edit mode. How can this be accomplished?
Or Can this invoked programmatically outside of grid?
I am looking to get dojo datagrid appear by default in edit mode. How can this be accomplished?
Or Can this invoked programmatically outside of grid?
Just add this to the Grid:
editable = true;
You should also take a look at: http://dojotoolkit.org/api/1.9/dojox/grid/DataGrid
while in layout structure i'm declaring this
gridStructure = [{
defaultCell: { ..., editable: true}
, cells:[ ...,
{field: "COLUMNx", name: "Column X"}
]
}];
defaultCell get the same parameter as cells