Hi,
when more attributes contain template expression, e.g.:
<template >
<option value="{Id}" title="{Title}" data-test="{1+2}">{Value}</option>
</template>
Then template only in the last attribute is being evaluated producing the following HTML:
<template >
<option value="{Id}" title="{Title}" data-test="3">Value from XML</option>
</template>
But {Id} and {Title} should be also populated by data coming from the instance, but they keep untouched and unprocessed.