xsl:apply-imports


<xsl:apply-imports>
<xsl:apply-imports> </xsl:apply-imports>
The xsl:apply-imports element is used to apply (invoke) the definitions and template rules of an imported stylesheet that normally might be overridden by the importing stylesheet.
When one or more stylesheets are imported using the xsl:import element, the imported stylesheets are assigned a lower import precedence than the importing stylesheet. This means that the definitions and rules contained in the imports may be overridden and therefore may not be applied.
The purpose of the xsl:apply-imports element is to permit these overridden rules to be applied when and where you desire them to be applied.
Scroll to Top