Hello,
I'm trying to add this container in my main view: 'graphnididetailscontainer'. It works fine with Firefox but I have the following issue in IE:
Message: 'seriesId' is null or not an object
Line: 410
Char: 71
Code: 0
URI: http://localhost:8500/Tab/extjs/src/...=1354117512812
Anyone would know what's the matter with IE in this case?
Thanks.
Code:
{ xtype: 'container',
layout: {
type: 'hbox',
//reserveScrollbar: true,
align: 'left'
},
items: [{
xtype: 'Nidi',
id: 'nidiGridId',
flex: 0.86
},
/* {
xtype: 'NidiDetails',
id: 'nidiDetailsId',
flex: 1
},
{
xtype: 'graphnididetailscontainer',
id: 'graphNidiDetailsContainerId',
flex: 1
}*/
{
xtype: 'container',
id: 'nidiContainerId',
hidden: true,
flex: 1.14,
layout: {
type: 'vbox',
id: 'nidiGraphId'
},
items: [
{
xtype: 'NidiDetails',
id: 'nidiDetailsId',
flex: 1.3
},
{
xtype: 'graphnididetailscontainer',
id: 'graphNidiDetailsContainerId',
hidden: true,
flex: 2.0
}
]
}]
}]}