http://blogs.technet.com/b/stefan_gossner/archive/2011/11/10/using-synchronous-quot-after-quot-events-e-g-itemupdated-in-sharepoint-2010.aspx
http://sharepoint.stackexchange.com/questions/25542/what-happens-if-an-earlier-event-receiver-throws-an-error
https://karinebosch.wordpress.com/walkthroughs/event-receivers-walkthrough2/
http://sppms.blogspot.in/2012/05/sharepoint-2010-event-receivers-and.html
http://www.sharepoint-tips.com/2012/01/importance-of-synchronous-event.html
Monday, August 3, 2015
Sunday, August 2, 2015
change the colour of sharepoint list item
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.0/jquery.min.js" type="text/javascript"></script> $(window).load(function () { $Text = $("td.ms-cellstyle.ms-vb2:contains('GREEN')"); $Text.parent().css("fore-color", "#01DF3A"); $Text.css("color", "#01DF3A"); $Text = $("td.ms-cellstyle.ms-vb2:contains('RED')"); $Text.css("color", "#F90101"); $Text = $("td.ms-cellstyle.ms-vb2:contains('AMBER')"); $Text.css("color", "#EAC117"); }); }); http://mekalikot.blogspot.in/2014/07/highlight-row-change-font-color-and.html |
Subscribe to:
Posts (Atom)
HTML
Script: