Archive for tag: Sharepoint Designer

Sharepoint: Apply background color to custom list column based on other column value

1 July, 2009 (07:12) | MOSS - Customization with SPD | By: GVK

Today we are going to learn how to apply the background color to a custom list column based on other column value, firstly, I tried this scenario using calculated formula column type but some javascript code is needed to render the background color based on calculated formula value,  so I did some research and come [...]

Set task list title textbox to readonly mode in Sharepoint 2007

5 September, 2008 (14:23) | MOSS - Customization with SPD | By: GVK

One of my client asked to set the task list title textbox to readonly mode when the user selects edit item property from the context menu.
So, I thought to complete this scenario by making use of javascript

Open the EditForm.aspx in Sharepiont designer
Select one td tag to write the javascript which sets the Title textbox to [...]

Sharepoint Breadcrumb: Display's current site title

30 August, 2008 (11:44) | MOSS - Customization with SPD | By: GVK

To display only the current site title in Sharepoint breadcrumb add the property ParentLevelsDisplayed=”0″ in the <asp:SiteMapPath… tag
The below Asp:SiteMapPath tag display only the current site title
Example:
<asp:SiteMapPath ID=”siteMapPath_section” Runat=”server” SiteMapProvider=”CurrentNavSiteMapProviderNoEncode” RenderCurrentNodeAsLink=”false” SkipLinkText=”” CurrentNodeStyle-CssClass=”breadcrumbCurrent” NodeStyle-CssClass=”ms-sitemapdirectional” ParentLevelsDisplayed=”0″>
<CurrentNodeStyle CssClass=”breadcrumbCurrent” />
<NodeStyle CssClass=”ms-sitemapdirectional” />
</asp:SiteMapPath>
The below Asp:SiteMapPath tag display only the current site title parent and current site title (parent > [...]

Customize search box in sharepoint 2007

28 August, 2008 (12:11) | MOSS - Customization with SPD | By: GVK

Now, we learn how to customize the sharepoint search box
Search for the Content place holder PlaceHolderSearchArea
Add the property visible=”false” to the PlaceHolderSearchArea
As shown in below image:
Now, choose the place where you want to put the customized search box or write a new tag <td></td> below the PlaceHolderSearchArea closing </td> tag
Go to the menu Task Panes [...]

Sharepoint 2007 sample master page

4 August, 2008 (10:36) | Business Data Catalog, MOSS - Customization with SPD, MOSS - Master Pages | By: G Vijai Kumar

5number-masterpage.zip
Installation Steps:

Extract the downloaded file 5Number-MasterPage
Open your Sharepoint 2007 site in Microsoft Office SharePoint Designer 2007.
On the File menu, click Open Site.
In the Open Site dialog box, type the URL of the site that you want to open, and then click Open.
On the File menu, select Import > File
In the Import dialog box, select Add [...]