| 123456789101112131415161718192021222324252627282930313233343536 |
- Ext.define('erp.view.hr.emplmana.Exam',{
- extend: 'Ext.Viewport',
- layout: 'fit',
- hideBorders: true,
- initComponent : function(){
- var me = this;
- Ext.apply(me, {
- items: [{
- id:'erpFormPanel',
- layout: 'border',
- items: [{
- region:'center',
- xtype: 'StartExamForm',
- width: '80%',
- saveUrl: 'hr/emplmana/saveExamQuest.action',
- deleteUrl: 'hr/emplmana/deleteExamQuest.action',
- updateUrl: 'hr/emplmana/updateExamQuest.action',
- getIdUrl: 'common/getId.action?seq=ExamQuest_SEQ',
- auditUrl: 'hr/emplmana/auditExamQuest.action',
- resAuditUrl: 'hr/emplmana/resAuditExamQuest.action',
- submitUrl: 'hr/emplmana/submitExamQuest.action',
- resSubmitUrl: 'hr/emplmana/resSubmitExamQuest.action',
- keyField: 'eq_id',
- codeField: 'eq_code',
- _noc:1
- },{
- xtype:'AnswerForm',
- width: '20%',
- region:'west',
- _noc:1
- }]
- }]
- });
- me.callParent(arguments);
- }
- });
|