0
我想將XML文件中的數據填充到sencha表單中的selectfield中2.如何做到這一點。將XML中的數據加載到sencha touch中的某個表單中的選擇字段2
我想將XML文件中的數據填充到sencha表單中的selectfield中2.如何做到這一點。將XML中的數據加載到sencha touch中的某個表單中的選擇字段2
我想說的 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
}
希望這有助於你在路上!
真的,一個downvote?我的回答有什麼問題?這個問題本身最多也不好(顯示沒有自己的研究跡象),所以我認爲一個答案使用戶指向正確的方向就足夠了。 – zelexir
謝謝..這是與Json(有一些修改)但與XML沒有任何事情正在發生。沒有什麼意思沒有錯誤和沒有積極的結果 – user1700052
如果你已經嘗試了一個解決方案,你真的應該用一些代碼編輯你的文章。這樣一來,其他人就會更容易看出你是如何做事的,以及可能是什麼錯誤。 – zelexir