I created a dijit.form.multiselect control and populated it with hardcoded data in the create.jspx - for testing.
That works fine. Now, I need to populate it with external XML data at onload time. How do I do that in create.jspx? Most materials I read on this subject either uses a json data file or an URI as data source. Furthermore, is there any applicable examples that I can follow?
Moving to JSP, as at this point the question has nothing to do with Spring.
Note that there are other ways to get XML other than a JSP, like serializing to XML.
Mimi Tam
Ranch Hand
Joined: Mar 05, 2010
Posts: 121
posted
0
Thank you, David.
Thank you for the suggestion as well. By "serializing to XML", did you mean to read from an XML file? Probably not.
I have a whole bunch of *jspx files written up via Spring Roo as the initial program structure and I thought to stick with the *.jspx files for Views would be an easier way out. Can you please elaborate a bit on how I can do this by "serializing to XML'?