1. #1
    Sencha User
    Join Date
    May 2010
    Location
    Belgium
    Posts
    186
    Vote Rating
    1
    Answers
    3
    marxan is on a distinguished road

      0  

    Default Unanswered: Issue while loading a chart in starting application

    Unanswered: Issue while loading a chart in starting application


    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
                                }
                                ]
                            }]
                        }]}

  2. #2
    Sencha - Senior Forum Manager mitchellsimoens's Avatar
    Join Date
    Mar 2007
    Location
    St. Louis, MO
    Posts
    33,710
    Vote Rating
    436
    Answers
    3113
    mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of

      0  

    Default


    Hard to say with the code you have provided.
    Mitchell Simoens @SenchaMitch
    Sencha Inc, Senior Forum Manager
    ________________
    http://www.JSONPLint.com - Source to lint your JSONP!

    Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
    https://github.com/mitchellsimoens

    Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/

    Need more help with your app? Hire Sencha Services services@sencha.com

    Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!

    When posting code, please use BBCode's CODE tags.

  3. #3
    Sencha User
    Join Date
    May 2010
    Location
    Belgium
    Posts
    186
    Vote Rating
    1
    Answers
    3
    marxan is on a distinguished road

      0  

    Default


    Indeed, I thought someone would already had this kind of message. Finally I've found out the problem. It was not in the general view but in the chart view where I forgot to remove a coma in a serie in the last line...