| bio | website | vivek-soni.blogspot.com |
|---|---|---|
| location | India | |
| age | 28 | |
| visits | member for | 2 years, 11 months |
| seen | Jun 13 '11 at 17:54 | |
| stats | profile views | 346 |
Posses an experience of 5+ years in Development, Pre-sales support, and as a Professional Trainer for Microsoft Office SharePoint Server 2007 / Microsoft SharePoint Server 2010.
|
Dec 15 |
comment |
Filter a List with server-side value comparision(onLoad or dynamically), SP 2010 Well depending upon your requirements, you can write a user control and register it using a delegate control. Or you can write a web part. |
|
Dec 14 |
comment |
Change Display Mode of SharePoint Page based on edit Control Panel Since the WebPart.BrowserDesignMode Property is now obsolete, you can make use of the WebPartManager.DisplayMode property to achieve the same goal. Read more here.. msdn.microsoft.com/en- us/library/system.web.ui.webcontrols.webparts.webpartmanager.displaymode.aspx |
|
Dec 7 |
comment |
Help or Good example for using SPPersistedObject oh, I hope I find something you are looking for and will post that. |
|
Nov 26 |
comment |
UpdateListItems not working (New) Try to pass the list name and not the list GUID, like: listService.UpdateListItems("Test", batchElement); |
|
Nov 24 |
comment |
SharePoint 2010: Problems with a connection provider web part which uses an UpdatePanel Oh, that's good to know. please share the code if you can! |
|
Nov 22 |
comment |
MOSS TimerJob “results” are not appearing on the sites Have you tried restarting the timer service? |
|
Nov 16 |
comment |
Display the name of the user currently logged in? What sharepoint version are you referring? Do you have the freedom to deploy any custom components? |
|
Nov 10 |
comment |
I've edited a workflow but changes are not reflected when run. What SharePoint version you are working with? |
|
Oct 14 |
comment |
Replace default search box in SharePoint 2010 with custom one Refer this post... sharepointoverflow.com/questions/5825/… |
|
Oct 14 |
comment |
How to deploy a delegate control in the same feature as custom actions? can you provide your element.xml file contents.. |
|
Oct 8 |
comment |
How to link web parts? I hope you have a second list. You can go to that list and apply audience targeting to the items in there via the list settings. |
|
Oct 7 |
comment |
How to link web parts? you can target the items in the second list to the respective owners (via the list settings->audience targeting). This would automatically trim the UI in the second web part. |
|
Oct 1 |
comment |
List all Master Pages used in a Site Collection Well there is no straight forward route to find the active master pages from top to bottom in a site collection. You would need to write a console application that can iterate recursively across the site collection and print the values of SPWeb.MasterUrl and SPWeb.CustomMasterUrl property. |
|
Sep 30 |
comment |
How to migrate a Sharepoint Task List where all details are preserved? do you want to achieve this programmatically? or manually? |
|
Sep 30 |
comment |
SharePoint 2010: Using values specified through a modal dialog in web part code behind Thanks Charls for pointing me to that useful post, but I could not find the solution to my proble aka how to pass the values as computed by the ECMA model back to my managed code? |
|
Sep 30 |
comment |
Cross Site Collection Workflows The approver group lies in the second site collection and the user who started the workflow in the first site collection. |
|
Sep 29 |
comment |
Cross Site Collection Workflows The current application design does not permit to host any web service that can perform the task. It needs to be the WF that can persist the state across site collection. |
|
Sep 21 |
comment |
Getting HTTP 401 Unauthorized error while trying to call Lists.asmx James can you please re-explain "try to manually load Lists.asmx" |
|
Sep 21 |
comment |
Getting HTTP 401 Unauthorized error while trying to call Lists.asmx Yes I am able to login using devbox\testuser via browser. |
|
Sep 21 |
comment |
List view column re-order logic As i mentioned in the comments in response to James answer, I have a custom web part that displays some business information in combination of some fields. Now I want to give the user tha ability to arrange the order of these columns as displayed on the web part. |