[Xsltforms-support] Defining other widgets with XSLTForms; change needed
Brought to you by:
alain-couthures
From: Leigh L K. Jr <lei...@xe...> - 2011-03-11 21:52:10
|
We're defining other widgets with XSLTForms. We've found some changes from Claudius Teodorescu are necessary. They seem not to have an effect on unmodified XSLTForms and they are necessary to write your own widgets. Changes from xsltforms-dataisland-481.zip Subset of changes from exsltforms. See step 4 of installation.txt (http://sourceforge.net/projects/extxsltforms). diff xsltforms-dataisland-481/xsltforms.xsl xsltforms.xsl 151c151 < <xsl:copy-of select="$config/extensions/beforeInit"/> --- > <xsl:copy-of select="$config/extensions/beforeInit/*"/> 180c180 < <xsl:copy-of select="$config/extensions/onBeginInit"/> --- > <xsl:value-of select="$config/extensions/onBeginInit"/> 333c333 < <xsl:copy-of select="$config/extensions/afterInit"/> --- > <xsl:copy-of select="$config/extensions/afterInit/*"/> |