Howdy, Community.
I'm pretty new to ExtJS and I need a little advice for a task I'm working on. I created the GUI for my application using the Ext JS Designer and it works very well. Now I have a question regarding Ext.data.XmlStore:
I found this small piece of code to load an xml-file:
PHP Code:
Ext.onReady(function() {
var store = new Ext.data.XmlStore({
url: 'test.xml',
record: 'test',
fields:[{name:'name'},{name:'members', type:'int'}]
});
store.load();
});
But I have no idea how to append the data of the fields to my Ext-Form-Elements.
With best regards.