Button.xml Path
The <buttonxmlfile> tag specifies the location of button.xml
in an app's Config.xml
file, which contains the majority of its runtime settings. Note: This tag is not included in the default Config.xml
file and must be added as shown below. Enterprise Browser will read the button.xml
file if present in the specified folder each time the app launches. For more information, see the <buttonxmlfile> path tag in Config.xml
reference.
Possible Values:
- Fully qualified path and file name
- Substitution variable representing the fully qualified path
- Supports any valid internal or external storage device
- Default path: "file://%INSTALLDIR%/button.xml" (Enterprise Browser installation folder)
Example
<Configuration>
...
<FileLocations>
<buttonxmlfile value="file://%INSTALLDIR%/button.xml"/>
</FileLocations>
...
</Configuration>
CustomScript.xml Path
The <customxmlfile> tag specifies the location of CustomScript.xml
in an app's Config.xml
file, which contains the majority of its runtime settings. Note: This tag is not included in the default Config.xml
file and must be added as shown below. Enterprise Browser will read the CustomScript.xml
file if present in the specified folder each time the app launches. For more information, see the <customxmlfile> path tag in Config.xml
reference.
Possible Values:
- Fully qualified path and file name
- Substitution variable representing the fully qualified path
- Supports any valid internal or external storage device
- Default path: "file://%INSTALLDIR%/CustomScript.xml" (Enterprise Browser installation folder)
Example
<Configuration>
...
<FileLocations>
<customxmlfile value="file://%INSTALLDIR%/CustomScript.xml"/>
</FileLocations>
...
</Configuration>
Related Guides:
- <buttonxmlfile> path tag in
Config.xml
- <customxmlfile> path tag in
Config.xml
- ButtonBar APIs
- Button.xml Guide
- CustomScript.xml Guide