| 1234567891011121314151617181920212223242526272829 |
- Ext.define('erp.view.common.productRelative.ProductRelative',{
- extend: 'Ext.Viewport',
- layout: 'anchor',
- hideBorders: true,
- initComponent : function(){
- var me = this;
- var caller='Product';
- Ext.apply(me, {
- items: [{
- items: [{
- xtype: "ProductRelativeFormPanel",
- anchor: '100% 40%'
- }
- ,{
- anchor: '100% 60%',
- xtype: "panel",
- id:'panel',
- items:[{
- 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);
- }
- });
|