Currently, the ContainerHeader TagHelper allows setting the following set of attributes for templates.
It would be beneficial to incorporate a Template TagHelper option that can be set for the TileLayout ContainerHeader. Similar to how it is for the ContainerBody TagHelper
<kendo-tilelayout name="tilelayout">
<containers>
<container col-span="1" row-span="1">
<container-body-template>
<div>Test</div>
</container-body-template>
</container>
</containers>
</kendo-tilelayout>
E.g:
<kendo-tilelayout name="tilelayout">
<containers>
<container col-span="1" row-span="1">
<container-header>
<container-header-template>
<span class="k-card-title">Locations</span>
<kendo-button name="someBtn">Some BTN</kendo-button>
</container-header-template>
</container-header>
...
</container>
</containers>
</kendo-tilelayout>
This would also improve the CSP compatibility of the component, as the configuration will prevent the inclusion of inline scripts.