jQuery CAML Query – lists.asmx Web Service
So, recently I’ve embarked on a project to create a client side jQuery grid. To do this, I started out by creating a simple table from list data return from a CAML query to the list.asmx web service.
To get me started, I used Jan Tielen’s blog post Here. His example works perfectly accept you’ll need to modify one line of code to make it fully cross-browser compatible.
Change this:
$(xData.responseXML).find(“z\\:row”).each(function() {
to this:
$(xData.responseXML).find(“z\\:row, row”).each(function() {
Continue reading
Advertisements