我正在开发 Sencha Touch 2 应用程序并使用来自http://podlipensky.com/post/2012/03/20/Sencha-Touch-2-ExtuxtouchRating.aspx的星级小部件
我想在配置如下的列表中显示每个项目的评分:
Ext.define('Schneehoehen.view.LoipenUebersicht', {
extend: 'Ext.navigation.View',
xtype: 'loipenuebersicht',
config: {
items: [{
xtype: 'list',
title: 'Loipen Übersicht',
itemTpl: '{label}', // I would like to show the widget next to the label
onItemDisclosure: true,
store: Ext.create('Schneehoehen.store.LoipenUebersichtStore')
}]
}
})
现在我想知道如何在 itemTpl 中包含我的星级小部件。
小部件使用以下代码显示在另一个视图的表单中:
new Ext.ux.touch.Rating({
itemsCount: 5,
label: 'Image less',
cls: 'x-imageless-rating',
itemCls: 'x-imageless-star',
itemHoverCls: 'x-imageless-hover'
})
提前致谢!约翰内斯