0
votes

How can I add a panel to the dockedItems of a gridPanel in extended js? On a gridpanel I need to add a panel to it's docked items on the bottom of it. This will be used for a live newsfeed

1

1 Answers

1
votes

I think you can just add the panel to bbar.

 bbar:[Ext.create('Ext.panel.Panel',{
    width:'100%',
    height:100,
    title:'Live Feed',
    items:[{text:'The Docked Panel'}],
}),{text:'hello'}]

I have created a fiddle.. refer it.JSFIDDLE