Ext.define('erp.view.crm.customermgr.development.Contact',{ extend: 'Ext.Viewport', layout: 'fit', hideBorders: true, initComponent : function(){ var me = this; Ext.apply(me, { items: [{ id:'erpFormPanel', layout: 'anchor', items: [{ xtype: 'erpFormPanel', anchor: '100% 100%', saveUrl: 'common/saveCommon.action?caller='+caller, deleteUrl: 'common/deleteCommon.action?caller='+caller, updateUrl: 'common/updateCommon.action?caller='+caller, getIdUrl: 'common/getId.action?seq=CONTACT_SEQ', keyField: 'ct_id', //codeField: 'ct_code', // statusField: 'ch_statuscode' }] }] }); me.callParent(arguments); } });