Hi All,
I am new in extjs.
I wants to create one window in which i want form and two grids.So for that i have done following code.
this.win2 = new Ext.Window({
id:'winadd'
,title:'Device Discovery'
,layout: 'border'
,width:800
,height:420
,closable:true
,maximizable:false
,border:false
,stateful:false
,loadmask:true
,modal:true
,plugins:[new Ext.ux.IconMenu({iconCls:'icon-grid'})]
,items:[{
region:'north'
,id:'center-form'
,stateful:false
,xtype:'exampleform' Save and restore desktop icon layout:: How to Save and restore desktop icon layout. My favorite full-screen games will change system resolution configuration, after I get back, the http://www.recipester.org/Recipe:Save_and_restore_desktop_icon_layout_46241266HOME |
,autoScroll:true
,split:true
,width:300
,height:230
,border:true
,autoHeight:false
,frame:true
},{
xtype:'panel',
region:'east',
width:400,
height:50,
autoHeight:false,
items:[{
title:'Black List'
,stateful:false
,width:400
,height:50
,xtype:'examplegrid'
,autoScroll:true
,border:true
,frame:true
,autoHeight:false
,split:true
}]
},{ IEBlog : The Default Layout Mode:: Create site content ensuring that Internet Explorer 8 is provided with standards content When opening a new Window in IE8 from an existing Window, the session is lost! http://blogs.msdn.com/ie/archive/2008/03/06/the-default-layout-mode.aspxHOME | Why is Web page layout still such a problem?:: I was just reading an article about the future of CSS. A main focus of the article is on the extremely poor layout capabilities of CSS. One such paragraph from http://pinderkent.blogsavy.com/archives/98HOME |
region:'center',
xtype:'panel',
width:400,
height:50,
autoHeight:false,
items:[{
title:'White List'
,stateful:false
,width:400
,height:50
,xtype:'examplegrid'
,autoScroll:true
,border:true
,frame:true
,autoHeight:false
,split:true
}]
},{
region:'south'
,height:10
,buttons: [{
text: 'Ok',
type: 'submit',
iconCls:'icon-ok'
},{
text: 'Cancel',
type: 'cancel',
iconCls:'icon-cancel'
}]
}]
});so using this code i am getting proper out put in ff :) but not getting in IE :s
See the actual output,what i want is shown in attached images.
but my Grid is getting overlap on the form panel.
Please help me.
Thanks in advance.
Challenging Books For A 14 Year Old?
First guitar : acoustic or electric?
|