SendKind.js 618 B

1234567891011121314151617181920212223242526
  1. Ext.define('erp.view.fa.ars.SendKind',{
  2. extend: 'Ext.Viewport',
  3. layout: 'fit',
  4. hideBorders: true,
  5. initComponent : function(){
  6. var me = this;
  7. Ext.apply(me, {
  8. items: [{
  9. id:'sendKindViewport',
  10. layout: 'anchor',
  11. items: [{
  12. xtype: 'erpGridPanel4',
  13. anchor: '100% 100%',
  14. updateUrl: '/fa/ars/updateSendKind.action',
  15. getIdUrl: 'common/getId.action?seq=SENDKIND_SEQ',
  16. /*detno: 'pd_detno',
  17. necessaryField: 'pd_prodcode',*/
  18. keyField: 'sk_id',
  19. /* mainField: 'pd_puid'*/
  20. /*type:'onlySingleGrid'*/
  21. }]
  22. }]
  23. });
  24. me.callParent(arguments);
  25. }
  26. });