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

Example: Inserting customized form elements

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <UICustomization>
        <FormElements>
            <FormElement action="insert" tag="ManageFolders_FormTitle" text="Manage My OnePlaceMail Folders"/>
            <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>