-
8 Nov 2012 1:48 AM #1
Add image to dynamic Panel
Add image to dynamic Panel
Hi,
I am creating a panel dynamically and adding it to accordion layout.
==>How to add an image to this dynamic panel header?
Piece of code:
for(var i =0; i< 5; i++)
{
temp = new Ext.Panel();
temp.title = displayCampIDandName[i].name;
temp.id = 'accordionPanelNotification'+i;
temp.cls = 'accordionPanelNotification';
temp.html = 'HTML';
temp.collapsed = true;
Accodion.items.add(temp);
}
==> How to add text so that it will appear on the image added on panel header
-
10 Nov 2012 6:25 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,619
- Vote Rating
- 434
Your code should be more like:
Code:var items = []; for (var i = 0; i < 5; i++) { items.push(new Ext.panel.Panel({ title : displayCampIDandName[i].name, cls : accordionPanelNotification, html : 'HTML', collapsed : true })); } Accodion.add(items);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.


Reply With Quote