From ed1e122cf5d6a08361624184826fe3b8ba369be0 Mon Sep 17 00:00:00 2001 From: Renaud Le Gac <renaud.legac@free.fr> Date: Sat, 26 Mar 2011 20:14:01 +0000 Subject: [PATCH] Upgrade to be compliant with new classes. --- .../src/appgridroweditortoolbar.js | 39 ++++++++----------- 1 file changed, 16 insertions(+), 23 deletions(-) diff --git a/static/plugin_dbui/src/appgridroweditortoolbar.js b/static/plugin_dbui/src/appgridroweditortoolbar.js index 83045f79..85a2c867 100644 --- a/static/plugin_dbui/src/appgridroweditortoolbar.js +++ b/static/plugin_dbui/src/appgridroweditortoolbar.js @@ -1,8 +1,6 @@ /** - * The row editor toolbar plugin - * - * Add a toolbar to the grid with button to manipulate the App.grid.RowEditor. - * The latter is instantiated if not already create. + * Add a toolbar with buttons to manipulate the App.grid.RowEditor. + * Requires the App.grid.GridRowEditor plugin. * * The ptype of this component is pGridRowEditorToolbar. * @@ -26,14 +24,9 @@ App.grid.RowEditorToolbar = Ext.extend(Object, { var toolbar; - // create and initialize the underlying RowEditor - if (!grid.editor) { - grid.editor = new App.grid.RowEditor({ - formModel: grid.model.formModel, - table: grid.model.table - }); - - grid.editor.init(grid); + // protection + if (!grid.rowEditor) { + throw new Error('no grid row editor !!!'); } toolbar = grid.getTopToolbar(); @@ -41,30 +34,30 @@ App.grid.RowEditorToolbar = Ext.extend(Object, { toolbar.add([{ text: 'Add', iconCls: 'silk-add', - handler: grid.editor.onAddRow, - scope: grid.editor + handler: grid.rowEditor.onAddRow, + scope: grid.rowEditor }, ' ', { text: 'Delete', iconCls: 'silk-delete', - handler: grid.editor.onDeleteRow, - scope: grid.editor + handler: grid.rowEditor.onDeleteRow, + scope: grid.rowEditor }, ' ', { text: 'Duplicate', iconCls: 'silk-clone', - handler: grid.editor.onDuplicateRow, - scope: grid.editor + handler: grid.rowEditor.onDuplicateRow, + scope: grid.rowEditor }, ' ', { text: 'Update', iconCls: 'silk-update', - handler: grid.editor.onEditRow, - scope: grid.editor + handler: grid.rowEditor.onEditRow, + scope: grid.rowEditor }, ' ', { text: 'View', iconCls: 'silk-view', - handler: grid.editor.onViewRow, - scope: grid.editor + handler: grid.rowEditor.onViewRow, + scope: grid.rowEditor }, '-']); } }); -Ext.preg('pGridRowEditorToolbar', App.grid.RowEditorToolbar); +Ext.preg('pGridRowEditorToolbar', App.grid.RowEditorToolbar); \ No newline at end of file -- GitLab