Showing posts with label Sharepoint. Show all posts
Showing posts with label Sharepoint. Show all posts

Tuesday, February 8, 2011

Getting "Debug Info" for a Sharepoint error!

http://grounding.co.za/blogs/neil/archive/2008/07/04/getting-quot-debug-info-quot-for-a-sharepoint-error.aspx

Wednesday, December 1, 2010

Add functions and events to SharePoint form fields

http://webborg.blogspot.com/2008/04/add-functions-and-events-to-sharepoint.html
http://sharepointspot.blogspot.com/2009/03/found-way-to-sharepoint-field-using.html
http://blogs.msdn.com/b/sharepointdesigner/archive/2007/06/13/using-javascript-to-manipulate-a-list-form-field.aspx?PageIndex=8#comments

For Loopup fields more than 20 items, MOSS will render differently, instead of select tag, it will render as input


http://www.sharepointboris.net/2009/10/sharepoint-lookup-field-how-does-it-work-and-how-to-add-javascript-event-handler-function-to-it/
http://www.agorainc.com/blogs/post/Binding-onchange-event-to-SharePoint-Lookup-column.aspx

Monday, October 11, 2010

How to Customize SharePoint Forms

http://weblogs.asp.net/sharadkumar/archive/2008/07/29/how-to-customize-sharepoint-forms-part-2.aspx

http://officetoolbox.codeplex.com/releases/view/15713

'Deploy' SharePoint Designer Workflows

http://blogs.pointbridge.com/Blogs/dupont_thomas/Pages/Post.aspx?_ID=16

Friday, October 8, 2010

Cascading Drop Down Lists

http://datacogs.com/datablogs/archive/2007/08/26/641.aspx

http://sharepointsircar.blogspot.com/2009/02/cascading-dropdownlist-custom-field.html

Sharepoint 2007 Price Calculator

http://community.bamboosolutions.com/blogs/sharepoint-price-calculator/default.aspx

Thursday, September 9, 2010

Thursday, August 5, 2010

Hide Edit in DataSheet

http://social.msdn.microsoft.com/forums/en-US/sharepointcustomization/thread/ce916fc8-6d56-4398-a061-5a018c3c5f32


hideListViewToolbarItems("Edit in Datasheet", "export to Spreadsheet",
"view rss feed","settings:create view");

function hideListViewToolbarItems()
{
///
/// By : Ayman M. El-Hattab ( ayman.elhattab@gmail.com )
/// http://ayman-elhattab.blogspot.com
///


var menuItem;
var menuItemName;
var menuItemIndex=-1;
var menuItemNames=new Array("edit in datasheet",
"open with windows explorer",
"connect to outlook",'export to spreadsheet','view rss feed','alert me'
,"create column","settings:create view","list settings",
"document library settings","explorer view","all documents",
"all items","modify this view",
"view:create view","new document",
"new item","new folder","upload document",
"upload multiple documents");
var menuItems = new Array("EditInGridButton",
"OpenInExplorer","OfflineButton",
"ExportToSpreadsheet","ViewRSS",
"SubscribeButton","AddColumn",
"AddView","ListSettings","ListSettings",
"View1","DefaultView",
"DefaultView","ModifyView","CreateView",
"New0","New0",
"NewFolder","Upload","MultipleUpload");

var allMenuItems = document.getElementsByTagName('ie:menuitem');
for(var i = 0; i < hideListViewToolbarItems.arguments.length; i++ )
{
menuItemName= hideListViewToolbarItems.arguments[i].toLowerCase();
for (j=0; j < menuItemNames.length; j++)
{
if(menuItemNames[j]==menuItemName)
{
menuItemIndex = j;
break;
}
}

menuItem=menuItems[menuItemIndex];

for (var l = 0; l < allMenuItems.length; l++)
{
if(menuItemName.indexOf(":")!=-1)
{
menuItemName = menuItemName.split(":")[1];
}
if (allMenuItems[l].id.indexOf(menuItem)!=-1
&& allMenuItems[l].text.toLowerCase() == menuItemName)
{
// For FireFox Compatibility
var parentNodeOfMenuItem = allMenuItems[l].parentNode;
parentNodeOfMenuItem.removeChild(allMenuItems[l]);
break;
}
}
}
}

Tuesday, July 27, 2010

Easy Way How to Find SharePoint Subsite Size

http://bobklass.blogspot.com/2009/01/easy-way-how-to-find-sharepoint-subsite.html

Thursday, July 22, 2010

Adding Javascript to save button in edit form Sharepoint

http://sarveshspn.blogspot.com/2010/03/adding-javascript-to-save-button-in.html

Wednesday, July 21, 2010

Workflow Videos

http://www.youtube.com/watch?v=EMDzqsoUW3k

Implementing Multiple Documents Approval Workflow in SharePoint 2007

http://rajeshagadi.blogspot.com/2010/04/implementing-multiple-documents.html

Monday, July 12, 2010

Sharepoint Workflow Programming (User Profile)

http://www.sharepointdev.net/sharepoint--development-programming/get-user-profile-using-display-name-in-sharepoint-51923.shtml
http://msdn.microsoft.com/en-us/library/microsoft.office.server.servercontext.aspx
http://karinebosch.wordpress.com/sharepoint-controls/peopleeditor-control/
http://simplesharepointsolutions.blogspot.com/2009/06/how-to-populate-custom-contact-list.html

Providing the fact that your user column only accepts users (not groups) and only a single value :

using (SPSite Site = new SPSite("yoursite"))
{
using (SPWeb Web = Site.OpenWeb())
{
SPListItem Itm = Web.Lists["TheList"].GetItemById(1);
SPFieldUserValue UserValue = new SPFieldUserValue(Web,Itm["UserCol"].ToString());
Console.WriteLine(string.Format("Email : {0}\r\nLogin :{1}",
UserValue.User.Email,
UserValue.User.LoginName));

}
}

Monday, July 5, 2010

sharepoint search dbo.membership_updateRecursiveMemberships

http://nitman.com/2009/11/26/office-server-search-event-id-10036/

http://darrylclark.blogspot.com/2010/01/event-id-10036-divide-by-zero-error.html

Tuesday, June 22, 2010

Error in the Site Data Web Service. (Specified argument was out of the range of valid values. Parameter name: databaseId

http://ppalakollu.blogspot.com/2008/02/protocol-handler-cannot-be-found-check.html

Ran the command: stsadm -o sync -deleteolddatabases 0

Restore WSS_Content

http://kuntalpatel.wordpress.com/restored-wss_content-database-from-one-server-to-other-server/

Friday, March 5, 2010

How to exclude content from being crawled within SharePoint Sites

http://raiumair.wordpress.com/2009/08/17/how-to-exclude-contents-from-being-crawled-within-sharepoint-sites/

Monday, January 18, 2010

Removing malfunctioning Windows SharePoint Services solutions

http://www.alexthissen.nl/blogs/main/archive/2007/07/18/removing-malfunctioning-windows-sharepoint-services-solutions.aspx

Friday, October 16, 2009

Progress Bar in Sharepoint List

http://pathtosharepoint.wordpress.com/2008/09/29/another-example-of-progress-bar/