Here is my Model and Store,
Ext.regModel('Agent', { fields: [{ name: 'userid', type: 'int' }, { name: 'agentname', type: 'string'}] });
App.stores.agentStore = new Ext.data.Store({
model: 'Agent',
storeId: 'AgentsStoreid',
proxy: {
type: 'ajax',
url: 'https://abc123.com/wsbrightdoor.asmx/GetAgents?username=abc&password=123',
reader: { type: 'xml', root: 'root', record: 'salesagent' }
},
autoLoad: true
});
//App.stores.agentStore.load();
console.log(App.stores.agentStore);
I'm setting this store to my selectitem like this
var sel = new Ext.form.Select(
{
id: 'Myselectfield',
name: 'myagent',
label: 'Agent',
store: App.stores.agentStore,
displayField: 'agentname',
valueFiels: 'userid',
placeHolder: 'Click/touch to select options...',
});
Here is my XML file the server returns
<?xml version="1.0" encoding="utf-8"?>
<root>
<salesagent>
<userid>1</userid>
<agentname>Name1</agentname>
</salesagent>
<salesagent>
<userid>13</userid>
<agentname>Name2</agentname>
</salesagent>
</root>
I can see store is getting values from the webserver and I can see the data object with agentname and userid values. We are using Sencha touch 1.1.0. I can now see the values in the selectfield that are populated from the webservice. When I select an item the selected item is not changing to the item I selected. I see the first element in my store as selected. How do we fix this? Please suggest.