react-redux-grid
react-redux-grid copied to clipboard
Unable to remove "Edit" item from grid actions
First of all, thank you for the great component!
I am trying to add grid actions for my grid like the following:
GRID_ACTIONS: {
menu: [{
text: 'Add subclass',
key: 'add-subclass-menu-key',
EVENT_HANDLER: this.onAddSubclass,
}, {
text: 'Edit class',
key: 'edit-class-menu-key',
EVENT_HANDLER: this.onEditClass,
}, {
text: 'Delete class',
key: 'delete-class-menu-key',
EVENT_HANDLER: this.onDeleteClass,
}],
},
But I see one more menu item "Edit" that wasn't be added in this section. I suppose it is some default action to edit row data. But is it possible to setup grid actions without Edit item?
Also, could you please clarify. Can I combine tree mode with custom column renderer?
Could you hide the edit item with CSS?
Also I believe the renderer works with tree mode as well.