-
8 Feb 2013 3:00 AM #1
Unanswered: Problem with menu item template
Unanswered: Problem with menu item template
Hi Sencha & The Community!
I am applying a template to menu items in ExtJs 4.1, and it seems that there is a bug for this feature, because the same code is working for ExtJs 3.4 version.
In ExtJs 4.1 a template is not applied at all, when I am providing 'tpl' and 'data' properties. It works only for 'renderTpl' and 'renderData', however mouse over selection and highlighting do not work.
In ExtJs 4.0 a template is applied for both 'tpl' with 'data' and 'renderTpl' with 'renderData' properties, but again without mouse over selection and highlighting.
The code is following.
var template = new Ext.XTemplate(['<img class="x-menu-item-icon {icon}" />',]);
'<b>{label1}</b>',
'<br/>{label2}'
toolbar.add(
{text: 'Test Menu',
menu: {
items: [{ xtype: 'menuitem', tpl: template, data: { icon: 'edit', label1: 'Primary 1', label2: 'Secondary 1' } },
{ xtype: 'menuitem', tpl: template, data: { icon: 'edit', label1: 'Primary 2', label2: 'Secondary 2' } }
]}}
);
Thanks,
Anahit.
-
11 Feb 2013 9:53 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,714
- Vote Rating
- 438
- Answers
- 3113
This is because a menu item uses the text config not the html which the data/tpl will update the html but since that is not used anywhere it will not display it.
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