Deseo saber si alguien conoce la forma de llamar un javascript cuando se haga un click en un botón dentro de un template xsl.
Sería algo asi:
Código:
<xsl:template name="_block_others">
<div class="header">
<div class="title">
<input type="image" class="hide-show-image" title="Ocultar bloque" alt="Ocultar bloque" onclick=" elementToggleHide(this, true, function(el) {return findParentNode(el, 'DIV', 'sideblock'); }, 'Mostrar bloque Novedades', 'Ocultar bloque Novedades'); return false;" src="@@RUTA_EXTENCION@@/theme/pix/switch_minus.gif" />
<h2>
<script language="javascript" type="text/javascript">
document.write(retornar_cadena('bloque', '<xsl:value-of select="NAME" />'));
</script>
</h2>
</div>
</div>
<div class="content">
<xsl:if test="NAME = 'section_links'">
<xsl:call-template name="_block_enlacesSeccion"></xsl:call-template>
</xsl:if>
<xsl:if test="NAME = 'participants'">
<xsl:call-template name="_block_participants"></xsl:call-template>
</xsl:if>
</div>
</xsl:template>


