GenWebValueId
From Plex-XML
Generates the ID for a HTML input field. It could be used for dictionary insert/update fields.
This template should be used in all places where you need the ID of an input field. It makes your code resistant against changes made in the base XSLT's.
Example
<xsl:template name="postFieldException">
<xsl:choose>
<xsl:when test="@implname='AcBody'">
<script language="javascript" type="text/javascript">
new ResizeableTextarea($('<xsl:call-template name="genWebValueId"/>'));
</script>
</xsl:when>
</xsl:choose>
</xsl:template>
<xsl:template name="postFieldException">
<xsl:choose>
<xsl:when test="@implname='AcBody'">
<script language="javascript" type="text/javascript">
...
<xsl:for-each select="ancestor::tab//group/row/returnvalue[@implname='FooFoo']">a='<xsl:call-template name="genWebValueId"/>';</xsl:for-each>
...
</script>
</xsl:when>
</xsl:choose>
</xsl:template>