Skip to main content

Posts

Showing posts from July, 2011

Globally Reusable Workflow in SharePoint 2010

http://www.khamis.net/blog/Lists/Posts/Post.aspx?ID=18 http://www.codeproject.com/KB/sharepoint/ReusableWFsSharePoint2010.aspx Video: Publish globally reusable workflows in SharePoint Designer 2010

Globally Reusable Workflow in SharePoint 2010

http://www.codeproject.com/KB/sharepoint/ReusableWFsSharePoint2010.aspx http://www.khamis.net/blog/Lists/Posts/Post.aspx?ID=18 Video: Publish globally reusable workflows in SharePoint Designer 2010

Coding Standards

Class & Method Declaration Standards: Relationship to the Common Type System and the Common Language Specification Describes the role of the common type system and the Common Language Specification in class library development. Naming Guidelines Describes the guidelines for naming types in class libraries. Class Member Usage Guidelines Describes the guidelines for using properties, events, methods, constructors, fields, and parameters in class libraries. Type Usage Guidelines Describes the guidelines for using classes, value types, delegates, attributes, and nested types in class libraries. Guidelines for Exposing Functionality to COM Describes the guidelines for exposing class library types to COM. Error Raising and Handling Guidelines Describes the guidelines for raising and handling errors in class libraries. Array Usage Guidelines Describes the guidelines for using arrays in class libraries and how to decide whether to use an array vs. a collectio...

Get SharePoint Workspace Url using object model

 public override void ItemUpdated(SPItemEventProperties properties)        {            base.ItemUpdated(properties);            bool hasWorkspace = Convert.ToBoolean(properties.ListItem["WorkspaceLink"]);            if (hasWorkspace)            {                string workspace = properties.ListItem["Workspace"].ToString();            }        }

Powershell Commands Used for Production Deployment

PowerShell Commands Site Backup: backup-spsite http://serverurl -path d:\temp\filepath.bak Site Restore : restore-spsite http://igrid101:8888 -path d:\temp\neo1800site.bak -force Add WSP Solution : Add-SPSolution -LiteralPath c:\Solutionname.wsp Deploy the Wsp Solution : Install-SPSolution -Identity contoso_solution.wsp -GACDeployment

Changing the Welcome menu style on SharePoint 2010

.ms-welcomeMenu {    padding:2px 5px 3px;    margin:0px 3px;    font-size:1em;    font-family:Verdana,sans-serif;    border:0px solid transparent;    display:inline-block; } .ms-welcomeMenu a:link {    color:#ffffff; } .ms-welcomeMenu a:hover {    text-decoration:none !important;    background-color:#c1c1c1; } .ms-welcomeMenu.ms-SpLinkButtonActive { /* [ReplaceColor(themeColor:"Dark2-Lighter")] */ /* [RecolorImage(themeColor:"Dark2-Lightest",includeRectangle:{x:0,y:489,width:1,height:11})] */   /* background: url(../img/backgrounds/bg-sprite-tabbar.png) 100% 0 no-repeat;*/ /* [ReplaceColor(themeColor:"Dark2",themeShade:"0.8")] */   background-color:#c1c1c1; } .ms-welcomeMenu.ms-SpLinkButtonActive a:link { /* [ReplaceColor(themeColor:"Light1",themeTint:"0.9")] */    color:#ffffff; }

JQuery Samples

Please find the below good links for slider samples... http://vandelaydesign.com/blog/web-development/jquery-image-galleries/ http://jqueryui.com/demos/toggle/ http://www.noupe.com/design/sliding-content.html http://www.extendstudio.com/jquery-slider-dreamweaver/samples.html