的,我怎麼能縮短長名稱列表對象中在煎茶觸摸時,我的模板IST建立一個像煎茶觸摸:: SUBSTR()上itemTpl LIST
itemTpl: '{firstName} {lastName}',
日Thnx!
編輯:thanx您嘗試了,哥們!我的問題是我用
plugins: [new app.plugins.editableList()], // by WhiteFox AS
這似乎是麻煩。而沒有插件的簡單
{
xtype: 'list',
...
itemTpl: new Ext.XTemplate(
'<tpl for=".">',
'<div>{[this.shortenName(values)]}</div>',
'</tpl>',
{
shortenName: function(values) {
return values.firstName.substr(0, 5);
}
}
),
...}
似乎工作。
thnx!我更新了我的問題... – headkit