Skip to content

Commit

Permalink
'content' binding for textfields etc had to be placed witout quotes, …
Browse files Browse the repository at this point in the history
…otherwise

the binding wouldn't work
  • Loading branch information
Benedikt Terhechte committed Sep 30, 2010
1 parent bf7a57d commit 1068e28
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions resources/SCXIB.xslt
Expand Up @@ -154,6 +154,12 @@
<xsl:when test="./string[@key='keyPath']='recordType'">
<xsl:value-of select="./string[@key='value']" />
</xsl:when>
<!-- when setting individual controls to content, it
needs to be without quotes. I wonder is this applies
generally -->
<xsl:when test="./string[@key='keyPath']='content'">
<xsl:value-of select="./string[@key='value']" />
</xsl:when>
<xsl:otherwise>
"<xsl:value-of select="./string[@key='value']" />"
</xsl:otherwise>
Expand Down

0 comments on commit 1068e28

Please sign in to comment.