Default save settings can be defined. These settings are used in folders in 'Manage Favorites' and are the default setting when a new folder is added.
These settings apply to Libraries and Lists only - not to site folders added.
<?xml version="1.0" encoding="UTF-8"?> <configuration> <manageFolders> <globalSettings> <setting action="delete" name="operationMode"/> <setting action="insert" name="operationMode" value="NoPrompt"/> </globalSettings> </manageFolders> </configuration>
Settings for OperationMode:
Property |
Mandatory / Optional |
Valid values |
action |
Mandatory |
Set to "delete" to remove a setting Set to "insert" to add a setting |
name |
Mandatory |
"operationMode" |
value |
Mandatory |
"PromptAll" "NoPrompt" |
<?xml version="1.0" encoding="UTF-8"?> <configuration> <manageFolders> <globalSettings> <setting action="delete" name="suppressResultsDialog"/> <setting action="insert" name="suppressResultsDialog" value="true"/> </globalSettings> </manageFolders> </configuration>
Setting for "suppressResultsDialog"
Property |
Mandatory / Optional |
Valid Values |
action |
Mandatory |
Set to "delete" to remove a setting Set to "insert" to add a setting |
name |
Mandatory |
"suppressResultsDialog" |
value |
Mandatory |
"true" "false" |
<?xml version="1.0" encoding="UTF-8"?> <configuration> <manageFolders> <globalSettings> <setting action ="delete" name="autoCheckIn"/> <setting action="insert" name"autoCheckIn" value="false"/> </globalSettings> </manageFolders> </configuration>
Settings for Auto Check in
Property |
Mandatory / Optional |
Valid Values |
action |
Mandatory |
Set to "delete" to remove a setting Set to "insert" to add a setting |
name |
Mandatory |
"autoCheckIn" |
value |
Mandatory |
"true" "false" |