LogicSet.js 445 B

12345678910111213141516171819202122
  1. Ext.define('erp.view.ma.logic.LogicSet',{
  2. extend: 'Ext.Viewport',
  3. layout: 'fit',
  4. hideBorders: true,
  5. initComponent : function(){
  6. var me = this;
  7. Ext.apply(me, {
  8. items: [{
  9. layout: 'anchor',
  10. items: [{
  11. xtype: 'erpFormPanel',
  12. anchor: '100% 21%',
  13. updateUrl: 'ma/logic/updateLogicSet.action'
  14. },{
  15. xtype: 'erpGridPanel2',
  16. anchor: '100% 79%'
  17. }]
  18. }]
  19. });
  20. me.callParent(arguments);
  21. }
  22. });