Logo white

Peter M. Groen / knowledgetree

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • knowledgetree
  • thirdpartyjs
  • extjs
  • examples
  • remoteload
  • EmployeeDetailsTab.js
  • KTS-3473 ...
    699cb2a1
    "Upgrade ExtJS to version 2.1"
    Fixed. Added the new version of ExtJS. Removed the examples from the list of included files, move kt-framing below the ext-all.css so that the ExtJS CSS can be overriden in kt-framing.
    
    Committed by: Megan Watson
    Reviewed by: Conrad Vermeulen
    
    
    
    git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@8758 c91229c3-7414-0410-bfa2-8a42b809f60b
    megan_w authored
    2008-07-07 07:52:56 +0000  
    Browse Code ยป
EmployeeDetailsTab.js 445 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/*
 * Ext JS Library 2.1
 * Copyright(c) 2006-2008, 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);