摘要:
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: '... 阅读全文
摘要:
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:... 阅读全文