If your requirement is to hide any menu item in SharePoint list for e.g. "Connect to Outlook" or "Open with Access" etc. then "ToolBar Manager " feature in codeplex is of great help .
http://www.codeplex.com/features
There are additional features which are useful too. You can download the same from :
http://www.codeplex.com/features/Release/ProjectReleases.aspx?ReleaseId=2502#ReleaseFiles
Tuesday, February 10, 2009
Thursday, February 05, 2009
Configuring AJAX in ASP.NET
Here is the list of web.config entries requires for AJAX to work in ASP.NET App.
Delete all Items in SharePoint List
You might end up with this requirement quite often and and try top down approach for delete :
for (int count=0;count < itemCount ; count++)
{ itemcoll[count].Delete(); }
and bump into exceptions , well the other way to do it is bottom up delete
for (int count =itemCount-1 ; count>0 ; count--)
{ itemcoll[count].Delete(); }
for (int count=0;count < itemCount ; count++)
{ itemcoll[count].Delete(); }
and bump into exceptions , well the other way to do it is bottom up delete
for (int count =itemCount-1 ; count>0 ; count--)
{ itemcoll[count].Delete(); }
SharePoint Utility Pack
If you are looking for a tool for Site Mangement with following features :
- Recursively deleting sites
- Create a list in multiple sites at once
- Modifying field settings - some internal settings that you cannot modify in the regular interface, and the option to modify lists with the same name in multiple sites at once
- Push a web part to multiple sites (a specific page in each site) at once
- Manage list event hanlders (register and remove event handlers from lists)
Then you need to have this tool by Ishai Sagi
The event handler functionality has proven to be of great help to me.
Subscribe to:
Posts (Atom)
Gray Failures: What is it and how to detect one?
If you are reading this article , i guess you are curious to know about gray failures and different methods to detect gray failures. Hopefu...
-
Note : In below scenario jenkins was deployed in Linux container Scenario: Jenkins build failed with error. java.io.IOException: error...
-
Ever wanted to have a people picker kind of control in Infopath form and that too in browser mode. Did i heard yes :) , well there is a Acti...
-
Simple concept but still pain in head if unable to figure out :) Response.Redirect("#");