How can I read XML in attribute format in ExtJS repository, where key / values ββare listed on the same line as id / value? I am more familiar with the second format below.
<? xml version = "1.0" encoding = "UTF-8"?>
<XMLResponse>
<data>
<row>
<column id = "title" value = "Star Wars" />
<column id = "director" value = "Lucas" />
<column id = "year" value = "1977" />
</row>
<row>
<column id = "title" value = "Jaws" />
<column id = "director" value = "Spielberg" />
<column id = "year" value = "1975" />
</row>
</data>
</XMLResponse>
A more traditional way of writing XML.
<? xml version = "1.0" encoding = "UTF-8"?>
<XMLResponse>
<data>
<row>
<title> Star Wars </title>
<director> Lucas </director>
<year> 1977 </year>
</row>
<row>
<title> Jaws </title>
<director> Spielberg </director>
<year> 1975 </year>
</row>
</data>
</XMLResponse>
user568866
source share