| 123456789101112131415161718192021222324 |
- Ext.define('erp.view.plm.record.RecordLog',{
- extend: 'Ext.Viewport',
- layout: 'fit',
- autoScroll:true,
- hideBorders: true,
- initComponent : function(){
- var me = this;
- Ext.apply(me, {
- items: [{
- layout: 'anchor',
- items: [{
- xtype: 'erpFormPanel',
- anchor: '100% 100%',
- saveUrl: 'plm/record/saveWorkRecord.action',
- updateUrl:'plm/record/updateWorkRecord.action',
- getIdUrl: 'common/getId.action?seq=WORKRECORD_SEQ',
- keyField: 'wr_id',
- }
- ]
- }]
- });
- me.callParent(arguments);
- }
- });
|