The following code is is not displaying the item template correctly with check boxes. If I don't use the item template it displays the data correctly.
<kendo-multiselect style="width: 250px;" [data]="userOrganizations" [textField]="'name'" [valueField]="'partner_oid'" placeholder="State/Municipality" [(ngModel)]="selectedOrganization" [autoClose]="false" [popupSettings]="{ width: 250, height: 350}"> <ng-template kendoMultiSelectItemTemplate let-dataItem> <input type="checkbox" class="k-checkbox" [checked]="isItemSelected(dataItem.name)"> <label class="k-checkbox-label">Name{{ dataItem.name }}</label> </ng-template></kendo-multiselect>