My project was in ExtJS 4
, now I have upgraded it to ExtJS 6
. But I have a problem in row editing. Can someone tell about the link where row editing is done in ExtJS 6
. Due to upgrade to ExtJS 6
, the row editing is not working.
Asked
Active
Viewed 1,064 times
-1

Rohit Sharma
- 1,402
- 9
- 20

PK1609
- 1
- 4
-
What is error coming share them , your sample code also. – Tejas Feb 07 '17 at 10:50
-
http://examples.sencha.com/extjs/6.2.0/examples/classic/restful/restful.html – scebotari66 Feb 07 '17 at 10:55
-
1Please add code related to error. – Alexandre Neukirchen Feb 07 '17 at 22:36
-
See the guidelines on how to ask good questions http://stackoverflow.com/help/how-to-ask – And-y Feb 08 '17 at 07:43
1 Answers
2
Please go through following steps :-
Step 1. Add requires
in your grid:
requires: [
'Ext.grid.plugin.RowEditing'
],
Step 2. In your grid, you need to use the following code:
selModel: 'rowmodel',
plugins: [{
pluginId: 'your_rowediting_plugin_id',
ptype: 'rowediting',
listeners: {
cancelEdit: function(rowEditing, context) {
// your stuff will go here
},
edit: function(editor, e) {
// your stuff will go here
}
}
}]
Hope it will help/guide you.

Rohit Sharma
- 1,402
- 9
- 20