X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/6a7e4474cba9d8be4b2ec445e10f1691f7277c50..refs/heads/master:/examples/state/state.js diff --git a/examples/state/state.js b/examples/state/state.js new file mode 100644 index 00000000..43602070 --- /dev/null +++ b/examples/state/state.js @@ -0,0 +1,153 @@ +/* + +This file is part of Ext JS 4 + +Copyright (c) 2011 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as published by the Free Software Foundation and appearing in the file LICENSE included in the packaging of this file. Please review the following information to ensure the GNU General Public License version 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department at http://www.sencha.com/contact. + +*/ +Ext.require([ + 'Ext.grid.*', + 'Ext.window.Window', + 'Ext.container.Viewport', + 'Ext.layout.container.Border', + 'Ext.state.*', + 'Ext.data.*' +]); + +Ext.define('Person', { + extend: 'Ext.data.Model', + fields: ['first', 'last', 'review', { + name: 'age', + type: 'int' + }] +}); + +Ext.onReady(function(){ + + // setup the state provider, all state information will be saved to a cookie + Ext.state.Manager.setProvider(Ext.create('Ext.state.CookieProvider')); + + Ext.create('Ext.container.Viewport', { + layout: 'border', + padding: '5', + items: [{ + region: 'north', + styleHtmlContent: true, + height: 150, + bodyPadding: 5, + split: true, + html: [ + 'Between refreshes, the grid below will remember', + '' + ].join(''), + dockedItems: [{ + xtype: 'toolbar', + items: [{ + text: 'Show window', + handler: function(btn){ + Ext.create('Ext.window.Window', { + width: 300, + height: 300, + x: 5, + y: 5, + title: 'State Window', + maximizable: true, + stateId: 'stateWindowExample', + styleHtmlContent: true, + bodyPadding: 5, + html: [ + 'Between refreshes, this window will remember:', + '' + ].join(''), + listeners: { + destroy: function(){ + btn.enable(); + } + } + }).show(); + btn.disable(); + } + }] + }] + }, { + bodyPadding: 5, + region: 'west', + title: 'Collapse/Width Panel', + width: 200, + stateId: 'statePanelExample', + split: true, + collapsible: true, + html: [ + 'Between refreshes, this panel will remember:', + '' + ].join('') + }, { + region: 'center', + stateId: 'stateGridExample', + xtype: 'grid', + store: Ext.create('Ext.data.Store', { + model: 'Person', + data: [{ + first: 'John', + last: 'Smith', + age: 32, + review: 'Solid performance, needs to comment code more!' + }, { + first: 'Jane', + last: 'Brown', + age: 56, + review: 'Excellent worker, has written over 100000 lines of code in 3 months. Deserves promotion.' + }, { + first: 'Kevin', + last: 'Jones', + age: 25, + review: 'Insists on using one letter variable names for everything, lots of bugs introduced.' + }, { + first: 'Will', + last: 'Zhang', + age: 41, + review: 'Average. Works at the pace of a snail but always produces reliable results.' + }, { + first: 'Sarah', + last: 'Carter', + age: 23, + review: 'Only a junior, but showing a lot of promise. Coded a Javascript parser in Assembler, very neat.' + }] + }), + columns: [{ + text: 'First Name', + dataIndex: 'first' + }, { + text: 'Last Name', + dataIndex: 'last' + }, { + text: 'Age', + dataIndex: 'age' + }, { + flex: 1, + text: 'Review', + dataIndex: 'review' + }] + }] + }); +}); +