Property "XSL Document Layout"

Top  Previous  Next

This property defines the layout of the XSL output document that is generated by the MoreMotion Application Studio during compilation in case the page is DYNAMIC. The layout defined in this property is used as the base to build the output XSL document.

The default layout

 

<?xml version="1.0" encoding="UTF-8"?>

<xsl:stylesheet version="1.0"

  xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:output method="html" encoding="${encoding}" version="1.0"/>

${top-defs}

<xsl:template match="/">

<html>

<head>

${head-code}

</head>

<body ${static-body-attrs}>${dynamic-body-attrs}

${body-code}

</body>

${nocache-defs}

</html>

</xsl:template>

${xsl-templates}

</xsl:stylesheet>

 

 
When required, you can modify the layout according to your needs by preserving the ${} symbols in it. ${} symbols are replaced by the MoreMotion Application Studio with the actual codes generated during compilation.