Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
0answers
82 views

Dijit.tree - how to update store URL

I have the following in my HTML file: <div dojoType='dojox.data.XmlStore' id='navTreeStore' jsId='navTreeStore' url='' label='name'></div> <div dojoType='dijit.tree.ForestStoreModel' ...
0
votes
1answer
1k views

Configuring an Ext.data.XmlStore to obtain custom tags from response

Hi I have the following xml returned from the server: Code: link text I couldn''t seem to get the xml store configuration right. Especially, I want to be able to obtain the custom tags: name, intra ...
0
votes
1answer
789 views

get the record value from XML Store in EXT js

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> ...
0
votes
2answers
3k views

Sorting a Dojo DataGrid Declaratively

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 ...
0
votes
2answers
910 views

Can i create a dojox.data.XmlStore with a url pointing to a different port or server

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 ...