0
votes
1answer
12 views

How do I change the width of a list input page?

I have a SharePoint list. When you select "New" to add an item, some of the categories are extremely long (they're actually questions) and cause you to have to scroll from left to right to read the ...
0
votes
2answers
270 views

Sharepoint 2007 Powershell: $item.update() gives error that file has been modified

I am trying to programmatically update some metadata for a sharepoint item using powershell. Here is my code: $web = getWebByURL("http://test-site/spadmin/") $itm = $web.lists["Documents"].items[0] ...
2
votes
1answer
82 views

“Assigned To” emails: how to control columns included?

We have an Issue Tracking list in a SharePoint 2007 instance which contains a column "Assigned To". The list has property "Send e-mail when ownership is assigned?" = Yes We do not use columns ...
1
vote
1answer
45 views

My list displays two columns of the same workflow

One of the oddest things I've seen on SharePoint to date... I have a list which was created from a template with a few workflows already attached to it. After I created the list, I deleted all of the ...
0
votes
2answers
244 views

Repeating Rows (InfoPath) in SharePoint Column

I have a field in a repeating table in Infopath 2007 and I've saved the form to the document library and connected fields in the form to columns in the SharePoint site. The only options I see in ...
1
vote
1answer
199 views

If custom field exists or not

I got one custom boolean column/field which I want to check if it exists or not before checking its value, currently I am using this code but it ain't working like it should, using (SPWeb web = ...
0
votes
1answer
62 views

check if SPField exists using list services

I want to check if a custom field exists for my list using list services but not sure how I can do it, I know it can be done using object model method "ContainsField()" but how can I do same with ...
0
votes
2answers
129 views

MOSS 2007 workflow not copying particular column to another list

MOSS 2007 workflow not copying particular column to another list I Created a workflow to move the list items to another list. A column with lookup field type is not moving to another list. The column ...
0
votes
0answers
140 views

Show “Path” field in list view export?

I have a report from a user that claims was generated by clicking the "Export to spreadsheet" button within a document library. This report contains not only All the files and folders from a level 3 ...
0
votes
3answers
104 views

Why customized title header of the List Views web part does not reflect correctly for other users?

I used the SharePoint Designer 2007 to generate the XSLT Data View and made modification to the column headers. Although I am able to see the new column header's name, other users still are not able ...
1
vote
0answers
62 views

Document List Indexed Column goes missing

We are currently trying to troubleshoot a problem in Sharepoint 2007 where a custom column loses the "indexed column" setting. We are trying to track this down, but has been mostly a reactive ...
0
votes
1answer
258 views

How would I set permissions when column = *?

I need to set permissions where only certain users have access to view an item when the column equals a certain value. For example: User1 can't see item TV when Vendor = "Walmart". User2 is able to ...