User Interface Customizations

The User Interface (UI) can have certain labels changed or adjusted, these can either be Form Elements or Error Messages. These need to be wrapped in <UICustomization> tags.

 

Form Elements

Many elements on common forms can have customized text. Within the <FormElements> tags, each <FormElement> tag must have the following properties:

Property

Mandatory / Optional

Description

action

Mandatory

Set to "insert" to change the default behavior

Set to "delete" to revert to default behavior

tag

Mandatory

Defines the particular element you wish to customize

text

Mandatory (on insert)

The replacement text for that element

 

Table of configurable elements

Tag 

 Description

 Manage My OnePlaceMail Folders

 

Setting this label property will change the Manage My OnePlaceMail dialog box heading

 Add

 

Setting this label property will change the Add button in the Manage My OnePlaceMail dialog box

 Remove

 

Setting this label property will change the Remove button in the Manage My OnePlaceMail dialog box

 Cancel

 

Setting this label property will change the Cancel button in the Manage My OnePlaceMail dialog box

 Add SharePoint Connection

 

Setting this label property will change the display name.

 Test

 

Setting this label property will change the 'Test' link in the 'Add SharePoint Connection' dialog 

 How do I add a SharePoint connection?

 

Setting this label property will change the link in the 'Add SharePoint Connection' dialog 

 Cancel

 

Setting this label property will change the cancel button in the 'Add SharePoint Connection' dialog 

 Click to Add SharePoint Connection

 

 

Setting this label property will change Add to SharePoint link in save/move to SharePoint dialog boxes

 Save to SharePoint

 

Setting this label property will change the header text in the Save/Move to SharePoint dialog boxes

 Location

 

 

Setting this label property will change the location label in save/move to SharePoint dialog boxes

 Files

 

 

Setting this label property will change the Files label in save/move to SharePoint dialog boxes

 Manage Files

 

 

Setting this label property will change the 'Manage  Files' link in the save/move to SharePoint dialog box

 Overwrite Existing Files?

 

 

Setting this label property will change the checkbox to overwrite existing files.

 Save

 

 

Setting this label property will change the 'Save' button in the Save/Move to SharePoint dialog box

 Cancel

 

 

Setting this label property will change the 'Cancel' button in the Save/Move to SharePoint dialog box

 Properties

 

 

Setting this label property will change the Properties tab in the content window, for  Save/Move to SharePoint dialog boxes

 Location Content

 

 Setting this label property will change the Location Content tab in the content window, for  Save/Move to SharePoint dialog boxes

 

 

Example: Inserting customized form elements

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <UICustomization>
        <FormElements>
            <FormElement action="insert" tag="ManageFolders_FormTitle" text="Manage Favorites"/>
            <FormElement action="insert" tag="ManageFolders_ButtonAddToUser" text="Add"/>
            <FormElement action="insert" tag="ManageFolders_ButtonRemoveFromUser" text="Remove"/>
            <FormElement action="insert" tag="ManageFolders_ButtonCancel" text="Cancel"/>
            <FormElement action="insert" tag="AddSharePointConnection_FormTitle" text="Add SharePoint Connection"/>
            <FormElement action="insert" tag="AddSharePointConnection_LabelTestConnection" text="Test"/>
            <FormElement action="insert" tag="AddSharePointConnection_HelpHowToAddConnection" text="How do I add a SharePoint connection?"/>
            <FormElement action="insert" tag="AddSharePointConnection_ButtonCancel" text="Cancel"/>
            <FormElement action="insert" tag="NavigationTree_AddSharepointConnection" text="Click to Add SharePoint Connection"/>
            <FormElement action="insert" tag="SaveToSharePoint_FormTitle" text="Save to SharePoint"/>
            <FormElement action="insert" tag="SaveToSharePoint_LabelLocation" text="Location"/>
            <FormElement action="insert" tag="SaveToSharePoint_LabelFiles" text="Files"/>
            <FormElement action="insert" tag="SaveToSharePoint_LabelManageFiles" text="Manage Files"/>
            <FormElement action="insert" tag="SaveToSharePoint_CheckBoxOverwrite" text="Overwrite Existing Files?"/>
            <FormElement action="insert" tag="SaveToSharePoint_ButtonSave" text="Save"/>
            <FormElement action="insert" tag="SaveToSharePoint_ButtonCancel" text="Cancel"/>
            <FormElement action="insert" tag="SaveToSharePoint_TabProperties" text="Properties"/>
            <FormElement action="insert" tag="SaveToSharePoint_TabLocationContent" text="Location Content"/>
        </FormElements>
    </UICustomization>
</configuration>

 

Example: Deleting customized form elements

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <UICustomization>
        <FormElements>
            <FormElement action="delete" tag="ManageFolders_FormTitle"/>
            <FormElement action="delete" tag="ManageFolders_ButtonAddToUser"/>
            <FormElement action="delete" tag="ManageFolders_ButtonRemoveFromUser"/>
            <FormElement action="delete" tag="ManageFolders_ButtonCancel"/>
            <FormElement action="delete" tag="AddSharePointConnection_FormTitle"/>
            <FormElement action="delete" tag="AddSharePointConnection_LabelTestConnection"/>
            <FormElement action="delete" tag="AddSharePointConnection_HelpHowToAddConnection"/>
            <FormElement action="delete" tag="AddSharePointConnection_ButtonCancel"/>
            <FormElement action="delete" tag="NavigationTree_AddSharepointConnection"/>
            <FormElement action="delete" tag="SaveToSharePoint_FormTitle"/>
            <FormElement action="delete" tag="SaveToSharePoint_LabelLocation"/>
            <FormElement action="delete" tag="SaveToSharePoint_LabelFiles"/>
            <FormElement action="delete" tag="SaveToSharePoint_LabelManageFiles"/>
            <FormElement action="delete" tag="SaveToSharePoint_CheckBoxOverwrite"/>
            <FormElement action="delete" tag="SaveToSharePoint_ButtonSave"/>
            <FormElement action="delete" tag="SaveToSharePoint_ButtonCancel"/>
            <FormElement action="delete" tag="SaveToSharePoint_TabProperties"/>
            <FormElement action="delete" tag="SaveToSharePoint_TabLocationContent"/>
        </FormElements>
    </UICustomization>
</configuration>