我想将 XML 文件中的数据填充到 sencha 2 中的表单中的选择字段中。如何做到这一点。
问问题
200 次
1 回答
0
我会说 Ext.data.reader.Xml的组合,用于将 xml 数据放入商店,然后将您的选择字段设置为:
{
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 回答