MoreSubs.js 488 B

123456789101112131415161718192021222324
  1. Ext.define('erp.view.common.DeskTop.MoreSubs', {
  2. extend : 'Ext.Viewport',
  3. layout : 'anchor',
  4. hideBorders : true,
  5. initComponent : function() {
  6. var me = this;
  7. Ext.apply(me,{
  8. items : [{
  9. anchor : '100% 100%',
  10. xtype : 'erpDatalistGridPanel',
  11. keyField:'id_',
  12. pfField:null,
  13. url:'',
  14. id :'Subs',
  15. caller :'Subs',
  16. firstPage:true,
  17. defaultCondition :'emp_id_='+em_id,
  18. showRowNum : false
  19. }]
  20. });
  21. me.callParent(arguments);
  22. }
  23. });