When using a TemplateRef for the titleBarContent - the template only uses the window service in ngTemplateOutletContext as 'let-win' for the action buttons - is there a possibility to set the title programmatically?
In the examples the title is always hard-coded in the template:
<ng-template #windowTitleBar let-win>
<div class="k-window-title">Custom TitleBar</div>
<button kendoWindowRestoreAction [window]="win"></button>
<button kendoWindowMaximizeAction [window]="win"></button>
<button kendoWindowCloseAction [window]="win"></button>
</ng-template>