3

前の例に従って「複数の」列を持つコンボボックスを作成しましたが、アイテムを選択しようとすると選択されません。tpl を使用してアイテムを選択できるようにするにはどうすればよいですか?

{
    xtype: 'combobox',
    tpl: '<tpl for="."><div class="x-combo-list-item" >{ntID} {PictureURL}</div></tpl>',
    editable: true,
    //autoSelect: true,
    triggerAction: 'all',
    store: 'userInfos',
    displayField: 'ntID',
    valueField: 'ntID',
    fieldLabel: 'Username',
    itemId: 'username'
},
4

1 に答える 1

7

リスト項目は次のものに置き換える必要があります。

div class="x-boundlist-item"
于 2013-08-14T13:37:18.327 に答える