123456789101112131415161718192021 |
- Ext.define('erp.view.common.productRelative.ProductRelative',{
- extend: 'Ext.Viewport',
- layout: 'border',
- hideBorders: true,
- initComponent : function(){
- var me = this;
- var caller='Product';
- Ext.apply(me, {
- items: [{
- region: 'north',
- xtype: "ProductRelativeFormPanel",
- },{
- region: 'center',
- tag :'iframe',
- id:'ProductWh',
- html : '<iframe src="' + basePath + 'jsps/common/relativeSearch.jsp?whoami=' + caller + '" height="100%" width="100%" frameborder="0" scrolling="auto"></iframe>'
- }]
- });
- me.callParent(arguments);
- }
- });
|