Product Bundles
DevCraft
All Telerik .NET and Kendo UI JavaScript components and AI Tools in one package.
Kendo UI
Bundle of AI Tools plus four JavaScript UI libraries built natively for jQuery, Angular, React and Vue.
Build JavaScript UI
Javascript
Telerik
Build modern .NET business apps
.Net Web
Cross-Platform
Desktop
Reporting and Documents
AI for Developers & IT
Ensure AI program success
AI Coding
AI Engineering
Additional Tools
Enhance the developer and designer experience
Testing & Mocking
Debugging
AI-Enhanced UI Tools
CMS
Free Tools
Support and Learning
Docs & Resources
Productivity and Design Tools
Hello Timothy,
The tag selector is a MultiSelect:
https://demos.telerik.com/blazor-ui/multiselect/overview
The visible tag list below the MultiSelect can be implemented with a ListView with a Button inside its Template:
https://demos.telerik.com/blazor-ui/listview/templates
Here is a quick and simple POC.
@page "/t1522562" @using System.Collections.ObjectModel <h3>Ticket 1522562</h3> <TelerikMultiSelect Data="@Countries" @bind-Value="@Values" Filterable="true" Placeholder="type a country" Width="600px"> </TelerikMultiSelect> <TelerikListView Data="@Countries" Class="tag-list"> <Template> <TelerikButton OnClick="(MouseEventArgs args) => CountryClick(args, context)">@context</TelerikButton> </Template> </TelerikListView> <style> .tag-list { border: 0; margin-top: 1em; } .tag-list .k-listview-content { overflow: visible; } .tag-list .k-button { margin-right: .4em; } </style> @code { private List<string> Values { get; set; } = new List<string>(); private List<string> Countries { get; set; } = new List<string>() { "France", "Germany", "Italy", "Spain", "United Kingdom" }; private async Task CountryClick(MouseEventArgs args, string country) { var valuesInternal = new ObservableCollection<string>(Values); var index = valuesInternal.IndexOf(country); if (index > -1) { valuesInternal.RemoveAt(index); } else { valuesInternal.Add(country); } Values = valuesInternal.ToList<string>(); } }
Regards, Dimo Progress Telerik
Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.