Skip to content Skip to sidebar Skip to footer

Dojo Ie Datagrid Inline Editing

I have enabled inline editing of cells in DataGrid and it is working fine all browsers except IE. The problem is that after double clicking a cell and performing changed in values

Solution 1:

This has also been added to the other linked question but also adding here for completeness.

Ok I've found the fix. It seems like it works perfectly. You need to register for the onBlur event of the grid and manually call save on your grid.

vGrid.onBlur = function(){
    var grid = dijit.byId('validation_grid');
    if (grid.edit.isEditing()){
        grid.edit.apply();
    }
};

Post a Comment for "Dojo Ie Datagrid Inline Editing"