/ Published in: Other
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
/** * grid from remote file with a listener for dbl click */ HO.Class.CRUD.prototype.defineGrid = function () { console.log('HO.Class.CRUD.initGrid '); this.Grid = new Ext.ux.Plugin.RemoteComponent({ url : '/files/ux/RemoteComponent/implementation4/grid_generated.php' //,loadOn : 'show' /* defer processing to container's show-event */ }); // add events this.Grid.on('success', function(cmp){ cmp.on('rowdblclick', this.onRowDblClick); return false; }, this); }