Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm doing a simple app which has a navigation view for containing a list, when you press the list I wanna show some HTML or something, but a "new" window so I can take advantage of the back-button on the navigationbar.

My problem now is that I need a search field on the navigationbar, for the inital showing, the problem is that I don't understand how to modify the navigationbar so it gets a search bar. Here's my code:

Ext.define('AppName.view.MainNav', {
extend: 'Ext.navigation.View',

xtype: 'mainnav',

requires: [
    'Ext.field.Search', 'Ext.TitleBar'
],

config: {
    fullscreen: true,
    items: [
        {
        navigationBar: {
            xtype: 'titlebar',
            items: [
                { xtype: 'spacer' },
                {
                    xtype: 'searchfield',
                    placeHolder: 'Search...',

                    }
                },
                { xtype: 'spacer' }
            ]
        },

        xtype: 'list',
        fullscreen: true,

        store: {
            fields: ['name', 'number'],
            sorters: 'name',
            data: [
                {name: 'bla', number: 0},
                {name: 'blo', number: 1},
                {name: 'bliblo', number: 2},
                {name: 'Bliblablo', number: 3},
                {name: 'bliboasdas', number: 4},
            ]
        },

        itemTpl: '{name}'
        }
    ]
}

});

There is now No search field on the navigationbar, it's just empty. How do I fix? Thanks in advance!

share|improve this question

1 Answer

up vote 4 down vote accepted

The navigationBar configuration must be inside the config tag, this code works for me:

Ext.define('AppName.view.MainNav', {
extend: 'Ext.navigation.View',

xtype: 'mainnav',

requires: ['Ext.field.Search', 'Ext.TitleBar'],

config: {
    fullscreen: true,

    navigationBar: {
        items: [
            {
                xtype: 'searchfield',
                placeHolder: 'Search...',
                align: 'right'
            }
        ]
    },
    items: [
        {
            xtype: 'panel',
            html: 'test'
        },
        {
            xtype: 'list',
            fullscreen: true,

            store: {
                fields: ['name', 'number'],
                sorters: 'name',
                data: [
                    {name: 'bla', number: 0},
                    {name: 'blo', number: 1},
                    {name: 'bliblo', number: 2},
                    {name: 'Bliblablo', number: 3},
                    {name: 'bliboasdas', number: 4},
                ]
            },

            itemTpl: '{name}'
        }
    ]
}
});
share|improve this answer
Spot on! Jolly good – Johan S Apr 5 '12 at 10:31
The above code dint work for me. I still get an empty navigation bar. – Khush Apr 26 '12 at 6:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.