Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Ext.require('Ext.grid.plugin.CellEditing');
- function MyEditableGrid({ store }) {
- return (
- <Grid
- store={store}
- plugins={{ptype: 'cellediting', clicksToEdit: 1}}
- columns={[
- { text: 'Name', dataIndex: 'name', flex: 1, editor: 'textfield' },
- ...
- ]}
- />
- )
- }
Advertisement
RAW Paste Data
Copied
Advertisement