Tagged Questions
0
votes
2answers
59 views
Hide Columns in Document Information Panel, but show in properties panel
I am trying to hide some columns from view in the DIP, but allow users to change them in the properties panel for the document. I am trying to associate 3 base content types for attaching different ...
3
votes
4answers
104 views
SharePoint List / Library property bag
I'm working with sharepoint 2007 and i have a question, does a sharepoint library / list has something like property bag, where i could store some properties for the list? Like a SPWeb object.
Or ...
0
votes
1answer
161 views
Programmatically add new fetched properties to webpart
I have a webpart which I extend and i would like to programmatically add extra fetched properties to those that already exist, but I cannot succeed in that, maybe you could be of help to me.
So here ...
0
votes
2answers
67 views
Can we find out in Event Receiver group Users like in a CS file
In CS file I used this code and it's worked:
SPWeb site = SPContext.Current.Web;
int managerGroup = site.Groups["Właściciele witryny Main"].ID;
if ...
1
vote
1answer
77 views
Multiple files upload to document library simultaneously & Custom property
I have a custom SharePoint 2007 document library which has a custom boolean column "Is it Important".
It works perfectly for all documents if I upload documents one by one regardless of if its a word ...
1
vote
3answers
222 views
How to check if a item in a custom list have a property or not
I added a check Check Box to a custom list library form which works well with new files uploaded and I can check the property Value by
bool.Parse(listItem.Properties["columnName"].ToString());
but ...
2
votes
1answer
269 views
how to get Custom List Item Property
I added a new column to Sharepoint Custom list which is boolean type, now each time I upload a item to list, it displays that column to check or leave it blank, by default its checked, I wanna access ...
1
vote
1answer
159 views
Add hyperlink to custom web part properties
I would like to add a hyperlink to a custom web part which will take the users to a web page on a new window with the configuration settings for the web part. If I try and add a text property as ...
5
votes
2answers
919 views
Do I need to reset SPWeb.AllowUnsafeUpdates after use?
Do I need to reset the SPWeb.AllowUnsafeUpdates property after use?
Seems not, but all over the web there is code like:
bool allowUnsafeOrig = web.AllowUnsafeUpdates;
web.AllowUnsafeUpdates = true;
...
