Include
Introduction
Includes are a way the Xul developer can break out a large document either to make it more readable or to facilitate the reuse of XUL. Include is not a tag from the Mozilla implementation. As such it's use it qualified by the "pen:include" namespace.
Properties
Property |
Fires Events |
Possible Values |
Notes |
---|---|---|---|
src (String) |
No |
 |
URL of Xul file to include, relative to the main xul doc |
ignoreroot (bool) |
No |
 |
If set to true the root of the document being included will be ignored (used to work around the XML limitation of multiple roots). |
Methods
None.
Sample Usage
<pen:include src="otherDialogs.xul" ignoreroot="true"/>