I use ExtJS 4.2. What is the easiest way to read local XML file? I understand that it's possible to use store and model, but I prefer other way. Is it possible to use Ext.Ajax.Request?
For example, this is my XML file content:
<LocaleText>
<Item>
<CTRO_CONTROLID>lblLoginTitle</CTRO_CONTROLID>
<CTRO_CONTROLTYPE>label</CTRO_CONTROLTYPE>
</Item>
<Item>
<CTRO_CONTROLID>cboLoginLanguage</CTRO_CONTROLID>
<CTRO_CONTROLTYPE>combobox</CTRO_CONTROLTYPE>
</Item>
</LocaleText>
How can I get the data of each Item node?