Column template in TypeScript Treegrid control
18 Nov 20181 minute to read
The column template has options to display custom element instead of a field value in the column.
TreeGrid actions such as editing, filtering and sorting etc. will depend upon the column
field. If thefieldis not specified in the template column, the treegrid actions cannot be performed.
Using condition template
You can render the template elements based on condition.
In the following code, checkbox is rendered based on Approved field value.
<script id="template" type="text/x-template">
<div class="template_checkbox">
${if(approved)}
<input type="checkbox" checked> ${else}
<input type="checkbox"> ${/if}
</div>
</script>