I am using Kendo UI with Angular 5. And I wanted to use Kendo's Multiselect component to enable user insert custom text values. By default, this component lists dropdown options or displays "No data found" message, if no dropdown data is present.
In my case, their is no dropdown data. And unnecessary to display the No-Data Template. Can anyone please tell me any possibility to disable/hide the No-Data Template?
<kendo-multiselect
formControlName="emails"
[value]="selectedEmails"
[allowCustom]="true"
(valueChange)="onEmailsChange($event)" >
</kendo-multiselect>
Thanks in advance.