We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When integrating the ChipList component within the Grid for editing, the batch editing cell gets instantly closed when you select an item:
Column definition:
columns.Bound(e => e.Evaluators).Title("Team") .Width(30) .Filterable(ftb => ftb .Multi(true) ) .EditorTemplateName("EvaluatorsEditor");
Editor:
@using Kendo.Mvc.UI @model object @(Html.Kendo().ChipList() .Name(ViewData.TemplateInfo.GetFullHtmlFieldName("")) .Selectable(ChipListSelectableMode.Multiple) .Items(item => { { item.Add().Label("JJ").Icon("check"); item.Add().Label("AB").Icon("folder"); } }) .HtmlAttributes(new { title = Html.ViewContext.ViewData.TemplateInfo.GetFullHtmlFieldName("") }) )
The ChipList should allow selection without closing the Grid cell automatically. Here is a Kendo UI example https://dojo.telerik.com/qnGrpBXZ/2
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
When integrating the ChipList component within the Grid for editing, the batch editing cell gets instantly closed when you select an item:
Column definition:
Editor:
Expected behavior:
The ChipList should allow selection without closing the Grid cell automatically. Here is a Kendo UI example
https://dojo.telerik.com/qnGrpBXZ/2
The text was updated successfully, but these errors were encountered: