| 1234567891011121314151617181920212223 |
- Ext.define('erp.view.hr.wage.wageitem',{
- extend: 'Ext.Viewport',
- layout: 'fit',
- hideBorders: true,
- initComponent : function(){
- var me = this;
- Ext.apply(me, {
- items: [{
- layout: 'anchor',
- items: [{
- xtype: 'erpFormPanel',
- anchor: '100% 100%',
- saveUrl: 'hr/wage/saveWageItem.action',
- deleteUrl: 'hr/wage/deleteWageItem.action',
- updateUrl: 'hr/wage/updateWageItem.action',
- getIdUrl: 'common/getId.action?seq=WAGEITEM_SEQ',
- keyField: 'wi_id'
- }]
- }]
- });
- me.callParent(arguments);
- }
- });
|