I attempted to use handlebars to set xsl:attribute. Here is the code snippet:
<input type="text">
{{#if_eq line_type 0}}
<xsl:attribute name="disabled">true</xsl:attribute>
{{/if_eq}}
</input>
Unfortunately, this approach does not seem to be functioning as expected. Are there any alternative solutions to address this issue?