CurrencysMonth.js 302 B

123456789101112131415
  1. Ext.define('erp.view.fa.fix.CurrencysMonth',{
  2. extend: 'Ext.Viewport',
  3. layout: 'anchor',
  4. initComponent : function(){
  5. var me = this;
  6. Ext.apply(me, {
  7. items: [{
  8. xtype: 'currencysMonthGrid',
  9. anchor: '100% 100%',
  10. keyField: 'ac_id'
  11. }]
  12. });
  13. me.callParent(arguments);
  14. }
  15. });