I have Viewport as below. The panel2
has a grid which has a PagingToolbar
. It does not show in IE, it shows little in FF. If I don't have the north region, it works fine.
What can be the reason?
Ext.create('Ext.Viewport', {
layout: 'border',
border : 0,
items: [
{
region: 'north',
html : 'Some html'
},
{ region: 'center',
layout:'fit',
split : true,
items : [panel1, panel2]
}
]
});
Here is a similar example : http://jsfiddle.net/edgMV/20/ The buttons are not showing up.
I was looking at your Fiddle but there are several things wrong.
items: resultsPanel
in your region panels, you are creating a new panel inside that panelNow for the layout, I don't know what you want exactly, but this might be close: http://jsfiddle.net/laurenzonneveld/kVUEU/4/
Edit: Updated Fiddle and code example to use
Ext.define