0

XMLファイルからsencha2.のフォームのselectfieldにデータを入力したい。その方法。

4

1 に答える 1

0

Ext.data.reader.Xmlを組み合わせ て、xml データをストアに取得し、selectfield を次のように設定します。

{
    xtype: 'selectfield',

    placeHolder: 'No options',   //what to display when store is empty

    store: MyStore,              //name of the store instance

    valueField:'assessorId',     //field in the store record that you want as
                                 //the 'value' of the item

    displayField:'assessorName', //field in the store record that will be 
                                 //displayed as text in the select item
}

これが途中で役立つことを願っています!

于 2012-10-25T14:26:12.243 に答える