| 123456789101112131415161718192021222324 |
- Ext.define('erp.view.fa.gs.AccountRegisterBank',{
- extend: 'Ext.Viewport',
- layout: 'border',
- hideBorders: true,
- initComponent : function(){
- var me = this;
- Ext.apply(me, {
- items: [{
- xtype: 'erpFormPanel',
- region: 'north',
- width: '12%',
- },{
- region: 'west',
- width: '15%',
- xtype: 'accountregistertree',
- },{
- region: 'center',
- id: 'centerpanel',
- html: '<iframe src="' + basePath + 'jsps/common/datalist.jsp?whoami=Category!AccountRegisterBank&_noc=1" width="100%" height="100%" frameborder="0" style="border-width: 0px;padding: 0px;"></iframe>'
- }]
- });
- me.callParent(arguments);
- }
- });
|