Hi,
the following template is partially working when used in a grid-row-template.
<grid-row-template>
<div>${data.Name}</div>
#if(data.HasLastName){#
<div>${data.LastName}</div>
#} else {#
<div>some other stuff</div>
#}#
</grid-row-template>
values inside ${ } are properly replaced, however the code inside # # is not executed, it is rendered as text.
What is the proper way to include conditionals in this case?
regards