?? employeestore.js
字號:
/*
* Ext JS Library 2.2
* Copyright(c) 2006-2008, Ext JS, LLC.
* licensing@extjs.com
*
* http://extjs.com/license
*/
Ext.ns('App');App.EmployeeStore = function(config) { var config = config || {}; config.fields = ['employeeId','firstName','lastName','title','department','telephone','office']; config.id = 'employeeId'; config.root = 'employees' App.EmployeeStore.superclass.constructor.call(this, config);};Ext.extend(App.EmployeeStore, Ext.data.JsonStore);
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -