Search This Blog

Friday, July 9, 2010

Enable Instant Search in Office Outlook 2010

Instant search in Office Outlook 2010 (OS Windows XP) is not supported directly.
To enable it download & install Windows Search 4.0 for Windows XP, available at http://www.microsoft.com/downloads/details.aspx?FamilyId=55C18CB3-C916-4298-ABA3-5B98904F7CDA&displaylang=en

How to hide SharePoint list from browsers

To hide SharePoint list from browsers do following:


  • Open SharePoint site with SharePoint Designer

  • Click on Lists folder & find desired list

  • Right Click--> Properties window, go to Settings tab

  • Check Hide from browsers checkbox

  • Done !

XSLT Date format dd-MMM-yyyy using ddwrt:FormatDateTime

<xsl:value-of select="ddwrt:FormatDateTime(string(@Created) ,1033 ,'dd-MMM-yyyy')" />
will produce 25-Apr-2009
<xsl:value-of select="ddwrt:FormatDateTime(string(@Created) ,1033 ,'dd-MMMM-yyyy')" />
will produce 25-April-2009
<xsl:value-of select="ddwrt:FormatDateTime(string(@Created) ,1033 ,'dd/MMM/yyyy')" />
will produce the result
25/Apr/2009

Change Title of SharePoint page, List page

Open desired sharepoint with SharePoint Desginer & use following javascript block:
<script type="text/javascript">
document.title="New Title";
</script>