In the following, I want to replace /books.xml with something like http://server:port/books. In essence the XmlStore to be served by some other server or port than the one serving this
<div dojoType="dojox.data.XmlStore" url="/books.xml" jsId="fileStore_book" rootItem="book"></div>
<div dojoType="dojox.grid.data.DojoData" jsId="model_fi...
I have a DataGrid that is loaded from an XML data store, all created declaratively. I'd like to set the sort when the data is loaded. All of the examples I've found deal with doing this programatically and hint that it should be doable Declaratively.
This is the code that creates the datasource.
<head>
<title>Untitled Page</title>...
I'm using dojox.data.XmlStore and noticed that it issues an HTTP request every time I try to do an operation on it. I took a look at the code and sure enough it executes dojo.xhrGet all the time.
Is there a way to get my hands on the returned data, or even better, have XmlStore cache the data so it doesn't have to hit the back end serve...
Hi,
I am ExtJS for GUI development. I am using XML Store for retrieving the data from server.
My XML looks like this.
<meta>
<entry>x</entry>
<entry>Y</entry>
</meta>
<data>
<value>100</value>
<value>500</value>
</data>
Where X=100 and Y=500
How do i retrieve the data and value from this using XMLStore?
...