ProdTraceKind.js 516 B

12345678910111213141516171819202122
  1. Ext.define('erp.view.scm.product.ProdTraceKind',{
  2. extend: 'Ext.Viewport',
  3. layout: 'anchor',
  4. hideBorders: true,
  5. initComponent : function(){
  6. var me = this;
  7. Ext.apply(me, {
  8. items: [{
  9. xtype: 'erpFormPanel',
  10. anchor: '100% 50%',
  11. bodyStyle: 'background:#f1f1f1;',
  12. updateUrl: 'scm/product/updateProdTraceKind.action?caller=' +caller,
  13. codeField:'pr_code',
  14. keyField:'pr_id'
  15. },{
  16. xtype: 'erpGridPanel2',
  17. anchor: '100% 50%'
  18. }]
  19. });
  20. me.callParent(arguments);
  21. }
  22. });