| 12345678910111213141516171819202122 |
- Ext.define('erp.view.oa.officialDocument.instruction.query.Viewport',{
- extend: 'Ext.Viewport',
- layout: 'anchor',
- hideBorders: true,
- initComponent : function(){
- var me = this;
- Ext.apply(me, {
- items: [{
- region: 'north',
- xtype:'erpInstructionQueryFormPanel',
- anchor: '100% 30%'
- },{
- region: 'south',
- xtype:'erpDatalistGridPanel',
- anchor: '100% 70%',
- // selModel: Ext.create('Ext.selection.CheckboxModel',{
- // })
- }]
- });
- me.callParent(arguments);
- }
- });
|