Save to SharePoint Dialog - Hiding Location Content Tab

 

note

 Configurable only via configuration update process

 

The Save to SharePoint dialog contains two tabs: Item Properties and Location Content.

It is possible using the configuration option below to hide the Location Content tab so that it is not available to the user.


To enable this behavior you must use a <sharePointContentTab> tag. The <sharePointContentTab> tag must be inserted between opening and closing <sendToHandler> tags.
Below details the tag properties:

 

 Property

 Mandatory / Optional

 Description

 action

 Mandatory

 Set to "insert" to change the default behavior

 Set to "delete" to revert to default behavior

 isVisible

 Mandatory

 True (default) or false

 Example: Hide the Location Content tab from the Save to SharePoint dialog

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <sendToHandler>
        <sharePointContentTab action="delete"/>
        <sharePointContentTab action="insert" isVisible="false"/>
    </sendToHandler>
</configuration>