Sencha touch :: add badgeText to item list

What would be the best way to add some badgeText to the elements of the List panel?

+3
source share
2 answers

ok, so one way to add icon text to a list item is to add the following code to xtemplate / itemTpl:

...
'<span class="x-badge ">4</span>',
...
+4
source

Sencha Touch 2.1

xtype: 'list',
itemId: 'listMainMenu',
store: 'storeMainMenu',
fullscreen: false,
itemTpl: '<span class="x-badge ">{BadgeText}</span>'

and it does not work.

DOM result:

<div class="x-innerhtml " id="ext-element-104"><span class="x-badge ">1</span></div>

View result

+1
source

All Articles