12345678910111213141516171819202122 |
- Ext.define('erp.view.scm.product.ProdTraceKind',{
- extend: 'Ext.Viewport',
- layout: 'anchor',
- hideBorders: true,
- initComponent : function(){
- var me = this;
- Ext.apply(me, {
- items: [{
- xtype: 'erpFormPanel',
- anchor: '100% 50%',
- bodyStyle: 'background:#f1f1f1;',
- updateUrl: 'scm/product/updateProdTraceKind.action?caller=' +caller,
- codeField:'pr_code',
- keyField:'pr_id'
- },{
- xtype: 'erpGridPanel2',
- anchor: '100% 50%'
- }]
- });
- me.callParent(arguments);
- }
- });
|