摘要: var panel = new Ext.container.Viewport({ items: { xtype: 'gridpanel', id: 'gridPanel', store: store, height: document.documentElement.clientHeight, columns: [ { header: "Id", hidden: true, flex: 1, sortable: false, dataIndex: '... 阅读全文
posted @ 2014-03-06 16:46 Seaurl 阅读(722) 评论(0) 推荐(0) 编辑
摘要: Ext.onReady(function () { gridPanel(); var panel = Ext.getCmp('gridPanel'); window.onresize = function () { panel.setHeight(document.documentElement.clientHeight); };});function gridPanel() { var pagingBar = Ext.widget('pagingtoolbar', { store: store, displayInfo:... 阅读全文
posted @ 2014-03-06 14:50 Seaurl 阅读(807) 评论(0) 推荐(0) 编辑