Specific SharePoint columns that appear in the OnePlace Solutions 'Save to SharePoint Window' (allowing users to enter metadata) can be suppressed so that the column does not appear by using the <columnsToSuppressFromFileUploadWindow> and child <columnToSuppress> tags
The <columnToSuppress> tag must be
inserted within opening and closing
<columnsToSuppressFromFileUploadWindow> tags.
Property |
Mandatory / Optional |
Description |
action |
Mandatory |
Set to "insert" to suppress a column |
name |
Mandatory |
The name of the column to suppress (this is the SharePoint display name not the internal name). |
list |
Optional |
A
list/document library url e.g. http://portal/lists/announcements.
|
contentType |
Optional |
The name of a content type in SharePoint e.g. Document If specified, this will suppress the column
only for the designated content type. If a column with this name
appears in other content |
<?xml version="1.0" encoding="UTF-8"?> <configuration> <columnsToSuppressFromFileUploadWindow> <columnToSuppress name="HideMe" action="insert"/> </columnsToSuppressFromFileUploadWindow> </configuration>
<?xml version="1.0" encoding="UTF-8"?> <configuration> <columnsToSuppressFromFileUploadWindow> <columnToSuppress name="HideMe" list="http://portal/announcements" action="insert"/> </columnsToSuppressFromFileUploadWindow> </configuration>
<?xml version="1.0" encoding="UTF-8"?> <configuration> <columnsToSuppressFromFileUploadWindow> <columnToSuppress name="HideMe" contentType="Document" action="insert"/> </columnsToSuppressFromFileUploadWindow> </configuration>