Posts

Showing posts from April, 2011

SharePoint: Group By on more than 2 columns in a view

  http://techtrainingnotes.blogspot.com/2008/11/sharepoint-group-by-on-more-than-2.html http://techtrainingnotes.blogspot.com/2011/01/sharepoint-group-by-on-more-than-2.html

Adding custom Style for List View

  http://www.novolocus.com/2008/09/18/adding-a-custom-view-style-to-moss-2007-or-wss3/ http://vkirshin.blogspot.com/2011/04/customizing-boxed-no-labels-view-style.html

Register CSS to SP Master Page

http://mosshowto.blogspot.com/2010/06/sharepoint-2010-registering-css.html http://social.technet.microsoft.com/Forums/en-US/sharepoint2010programming/thread/fc22110f-c83a-48ae-9f18-6a38a672e568/ protected override void OnPreRender(EventArgs e)         {             base.OnPreRender(e);             CssRegistration css = new CssRegistration();             css.Name=SPContext.Current.Web.Url +"/css/mcstyle.css";             css.After = "corev4.css";             this.Controls.Add(css);         }