Posts

Showing posts from September, 2011

Enable/Disable Fields using JQuery in NewForm and EditForm.aspx

Image
Hide  fields $ ( "td.ms-formlabel:contains('Type or Location')" ). parent (). hide (); ---------------------------------------- <script type="text/javascript" src="/root folder/customization/js/jquery-1.2.6.min.js"></script> <script type="text/javascript"> $(document).ready(function() { var text = $("select[title$='Quotes Attached'] :selected").text(); if(text != "Yes") { $("input[value$='OK']").attr('disabled', true); } $("select[title$='Quotes Attached']").change(function() { var text = $("select[title$='Quotes Attached'] :selected").text(); if(text == "Yes") { //alert('Please attach the Quote by clicking Attach File option'); $("input[value$='OK']").attr('disabled', false); } else { $("input[value$='OK']").attr('disabled', true); } });

Custom Form – Edit Fields Based on Permission Levels in SharePoint (Screencast)

Image
There are situations where certain fields in lists or libraries need to be hidden or displayed according to the permission level of the logged in user.  Since there is really no out-of-box way to assign permissions to fields, here's a way to do it using conditional formatting in SharePoint Designer.  This is my favorite SP Designer trick, that I discovered a few months ago. See my reference ( Ian's SharePoint Blog ): In this example, the field called "Priority" needs to be hidden from everyone except for those users who have rights as approvers on this custom list.  Also, there is a field called "Audit Date", that only approvers need to be able to edit, but other users (even those with edit rights) should not be able to edit this field, and everyone can see it. Doing this entails creating custom forms for all three forms (NewForm, DispForm, and EditForm) in the list. Here goes... 1.  To keep this simple, create a custom list called "Policies"

SharePoint Server 2007 server farm topologies

Image
Different type of SharePoint Server 2007 server farm topologies. (System Architecture) Introduction This article discuss about understanding the different type of SharePoint server farm topologies. Overview The SharePoint Server 2007 server farm design vary based on the customer requirements, security perspective and size requirement. The topology designs can be created based on the size of the server farm namely small, medium, and large which can focus on either a single or multiple farm models. Different type SharePoint Server Roles Web Front End Server : A front-end server that provides the web services used to render applications (Presentation layer). Application Server : A front-end server that provides applications services such as search and index (Services layer) SQL Database Server : A dedicated server running either Microsoft SQL Server 2005. In large farms, this is typically a SQL Server clustered configuration with two or more servers. Domain controller : Provide au

Setup and Install SharePoint 2007 Server (MOSS) on Virtual PC

Image
Introduction This article describes how to Setup and Install SharePoint 2007 Server (MOSS 2007) on Virtual PC Background Microsoft Office SharePoint Server 2007 is a powerful technology which consists of Document management and collaboration websites. Before you start installing, Make sure that you downloaded following software’s. .NET Framework 2.0 .NET Framework 3.0 Windows SharePoint Service 3.0 Windows SharePoint Service 3.0 SP 1 Virtual PC 2007 and Windows Sever 2003 R2. The following process includes creating a new VM definition, adjusting the settings, and installing the operating system (OS) and .NET Frameworks. (Take note that this process will take about three hours.) Setup Victual PC 1. Click New... and Click Next 2. Select Create a new virtual machine. Click Next. 3. Type the name and location. The default is New Virtual Machine . To create the VM on your external hard drive, enter the location and a name called WindowsEntServer2003BaseImage . and Click Next. 4.

Free SharePoint online training resources(MOSS 2007)

http://spforsquirrels.blogspot.com/2008/05/free-sharepoint-online-training.html