Put a kendo-combobox inside a KendoPanelBarItemTitle and the combobox fails to work
Looks like the Title is capturing all events
EXAMPLE below
<kendo-panelbar-item [title]="'Copy from Existing Scenarios'" color="secondary" expanded="true">
<ng-template kendoPanelBarItemTitle>
<span fxFlex></span>
<label style="margin:5px 5px 0 0">Source: </label>
<kendo-combobox
fxFlex="100"
[data]="otherScenarios | async"
[valuePrimitive]="true"
[textField] ="'Name'"
[valueField] = "'ScenarioId'"
class="mr-1"
placeholder="Source"
[disabled]="!copyFromExpanded"
[(ngModel)]="sourceScenarioId"
name="SourceScenarioId">
</kendo-combobox>
</ng-template>
<ng-template kendoPanelBarContent>
stuff here
</ng-template>
</kendo-panelbar-item>