I am building a navigation tree whose nodes will come from different underlying database tables. I am currently getting an array of text for the initial set of nodes. so the response looks like:

["Node 1", "Node 2", "Node 3", etc]. So there are no fields for the model of the data store. I am using the load event to get the records and then dynamically add them to the tree.

Would it be more appropriate to just use Ext.Ajax.request instead of a store?


Thanks


Michelle