Reputation: 130
I want to append a loading div below the list, like how the listpaging does it. (I am not using listpaging for other reasons). How do I go about doing this?
Upvotes: 0
Views: 381
Reputation: 861
Set your Layout of the Container to 'vbox' and add a container below your list with your html.
Example:
Ext.define("MyApp.view.MyView", {
extend : "Ext.Container",
config : {
layout : 'vbox',
fullscreen : true,
items : [{
xtype : 'list',
itemTpl : '{name}',
store : 'MyStore',
layout : 'fit',
flex : 1
}, {
height : 50,
xtype : 'container',
html : "HELLO WORLD"
}]
}
});
Sencha Fiddle Example: http://www.senchafiddle.com/#GJqsv
Upvotes: 1