Monthly Archives: April 2016

jQuery – how to extend?

Here is how you can extend jQuery functions: (function($){ $.fn.extend({ your_plugin_name: function() { // Your plugin code }, another_method: function(){ // Another method code } }); })(jQuery);

Posted in Uncategorized | Leave a comment

SharePoint exception when pasting data to datasheet view

I got the following exception when pasting data to a sharepoint list in datasheet view: Unexpected response from server. The status code of response is 500. The status text of response is system.servicemodel.serviceactivationexception Then I googled and found the way … Continue reading

Posted in Uncategorized | Leave a comment

SharePoint Designer Error – “could not save the list changes to the server”

I got the SharePoint designer error when I tried to create a new display form for a list that was imported from Access. Then I checked the ULS log and found this: “The ListFormBody attribute in the forms schema was … Continue reading

Posted in Uncategorized | 1 Comment