ASP.NET Ajax Toolkit
To integrate ASP.NET Ajax Toolkit is not the most straight forward task in SharePoint. If you want to take the risk, “Inspired by Technology” provides the best guide so far.
View ArticleUpdate list items with listdata.svc
In one of my previous posts I showed how to retrieve data from listdata.svc with jQuery $.getJSON method. Getting data is very simple, listdata.svc provides a powerful restful interface with filtering,...
View ArticlejQuery tmplItem and no ids
tmplItem() works even without ids. To get the current data: $(this).tmplItem().data; If you want to remove, just invoke the ajax and remove with $.parents: $(this).parents("li").remove(); Updating data...
View ArticleSimple stopwatch in javascript
If some javascript code takes too much time to execute, you probably want to see what time your code or a part of the code takes to run. I found an idea in Dave Cranes Ajax in Action. The book is a...
View ArticleClient Side Rendering with Async dependencies
Yesterday I asked a question on SharePoint StackExchange: Client Side Rendering with Async dependencies I also asked Elio Struyf on Twitter: @mirontoli create an empty element, with your own...
View Article