| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- Ext.define('erp.view.plm.record.SpecialRecord',{
- extend: 'Ext.Viewport',
- layout: 'fit',
- autoScroll:true,
- hideBorders: true,
- initComponent : function(){
- var me = this;
- Ext.apply(me, {
- items: [{
- layout: 'border',
- items: [{region: 'center',
- id: 'workrecord',
- layout: 'column',
- autoScroll: true,
- bodyStyle: 'background: #f0f0f0;',
- defaults: {frame:true},
- items: [{
- id:'grid',
- xtype: 'erpGridPanel2',
- layout:'column',
- defaults:{
- columnWidth:1,
- },
- bbar: {},
- },{
- xtype:'erpFormPanel',
- title:'',
- hidden:true,
- params:{
- caller:'WorkRecord!Task',
- condition:''
- }
- }]
- },
- {
- region:'west',
- width:'25%',
- xtype:'erpSpecialTreePanel',
- layout:'anchor',
- }
- ]
- }]
- });
- me.callParent(arguments);
- }
- });
|