Tagged Questions
1
vote
0answers
17 views
Code review for javascript and sencha touch with XML
Hi could you please code review the following, my concern is XML parsing is hardcoded:
Ext.Ajax.request({
url: storageDataItem.contentlink,
success: function (response) {
...
1
vote
0answers
86 views
Javascript XML Parser rapper
I created an XML rapper to easily access XML data.
Please tell me what do you think about it.
Performance
Scalability
Anything else...
This is how you use it:
var xml = new Xml(dataString);
...
0
votes
0answers
80 views
XML to JavaScript library design
I created a small library to parse xml to javascript. Can anyone tell me if the design is correct for a library? or if there is a better technique.
I wrote a small Usecase example here.
...