1. #1
    Sencha User
    Join Date
    Aug 2012
    Location
    Germany
    Posts
    19
    Vote Rating
    0
    wqjh7809 is on a distinguished road

      0  

    Default Unanswered: RowExpander doesn't shown -> namespace is undefined

    Unanswered: RowExpander doesn't shown -> namespace is undefined


    Hello, I've got an error by using the RowExpander (ExtJS 4.1.1). With the following code I get an error:

    Code:
     /**
             * Supports namespace rewriting
             * @private
             */
            parseNamespace: function(namespace) {
    
    ....
    because the namespace is undefined. Is there an error in my code? Without the rowexpander I get no error and the grid works.

    Code:
    Ext.application({
        name: 'test',
        launch: function () {
            Ext.define('myModel', {
                extend: 'Ext.data.Model',
                fields: [
                    { name: 'name1', type: 'string' },
                    { name: 'name2', type: 'string' }
                ]
            });
            var myStore = Ext.create('Ext.data.Store', {
                model: 'myModel',
                data: [
                    {
                        name1: 'Test Name 1',
                        name2: 'Test Name 2'
                    }               
                ]
            });  
            var myGrid = Ext.create('Ext.grid.GridPanel', {
                title: 'Test Grid',
                id: 'grid',
                store: myStore,
                columns: [
                    { header: 'Name', dataIndex: 'name1' }
                ],
                plugins: [{
                    ptype: 'rowexpander',
                    rowBodyTpl: new Ext.XTemplate(
                        '<p><b>Title:</b> {name1}</p>',
                        '<p>{name2}</p>'
                    )
                }],
                renderTo: Ext.getBody()
            });
        }
    });

  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


    Please stop posting the same thing over and over and over. Read the message after you submit a new thread/post, it would have told you that your thread(s) were put under moderation and they will have to be approved.
    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.