Posts

Showing posts from May, 2015

Tabs for sharepoint list forms using Jquery

Image
When the fields on the Form exceeds the viewable range and we get a vertical scroll, we need to customize the sharepoint forms to display the page with out scroll. scrolling is something that should be avoided for a optimum user experience. we can customize our sharepoint forms to display the content in a different way so that user does not have to scroll to fill the details in the list form. one of the best solution is to display the fields in tabbed format. lets she how w can cusstomizae our sharepoint list to display the fields on tabs using JQuery.     First download the required JQuery files from Jquery.com as given below      http://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css       http://code.jquery.com/jquery-1.10.2.js       http://code.jquery.com/ui/1.11.4/jquery-ui.js       Go to SharePoint Designer       Create a page as shown below:   ...

Developing Custom workflows in SharePoint 2007 using Visual Studio 2005

Image
There are two types of custom workflows we can develop in SharePoint 2007     1.     SharePoint Designer workflows : These workflows are developed using SharePoint Designer 2007.     2.     Visual Studio Designer workflows : These workflows are developed using Visual studio Designer for which we need to install Visual Studio 2005 Extensions for Windows Workflow Foundation . In this article I am going to explain about how to develop custom workflows using Visual Studio 2005 using InfoPath 2007 forms as Task forms. Design a Task form using InfoPath 2007 1.     Open Microsoft Office InfoPath 2007 2.     Click on “ Design a Form Template ” under “ Design a Form ” as shown below:   3.     Select “ Form Template ” and also ensure that “ Enable Browser compatible features only ” check box is selected, select blank template and click “ OK ”. 4.   ...