Viewport.js 288 B

1234567891011121314
  1. Ext.define('erp.view.fa.gla.cashFlowSum.Viewport',{
  2. extend: 'Ext.Viewport',
  3. layout: 'anchor',
  4. initComponent : function(){
  5. var me = this;
  6. Ext.apply(me, {
  7. items: [{
  8. xtype: "erpCashFlowGrid",
  9. anchor: '100% 100%'
  10. }]
  11. });
  12. me.callParent(arguments);
  13. }
  14. });