I am trying to restrict kendo multi-select to two values and display a tile button as "5 more" if there are further values.
Below is my code:
<div class="input-group">
<kendo-multiselect [(ngModel)]="selectedList" (open)="onOpen($event)"</kendo-multiselect>
<button class="search-btn"></button>
</div>
list that i am binding will have array of object that i have selected:
main list = {id:1,"Name":"Wood","Description":"GAS"}
{id:2,"Name":"CHCH","Description":"CTRE"}
selectedList = {id:2,"Name":"CHCH","Description":"CTRE"};