X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/ee06f37b0f6f6d94cd05a6ffae556660f7c4a2bc..c930e9176a5a85509c5b0230e2bff5c22a591432:/examples/remoteload/EmployeeDetailsTab.js diff --git a/examples/remoteload/EmployeeDetailsTab.js b/examples/remoteload/EmployeeDetailsTab.js deleted file mode 100644 index 8584a3cb..00000000 --- a/examples/remoteload/EmployeeDetailsTab.js +++ /dev/null @@ -1,24 +0,0 @@ -/* - * Ext JS Library 2.2.1 - * Copyright(c) 2006-2009, Ext JS, LLC. - * licensing@extjs.com - * - * http://extjs.com/license - */ - -Ext.ns('App'); - -App.EmployeeDetailsTab = Ext.extend(Ext.TabPanel, { - load: function(employeeId) { - this.items.each(function(i) { - if (i.load) { - i.load({ - params: { - employeeId: employeeId - } - }); - } - }); - } -}); -Ext.reg('employeedetailstab', App.EmployeeDetailsTab);