kendo-ui-core
kendo-ui-core copied to clipboard
ChipList clicks close the editing cell of the Grid when the Navigatable configuration is enabled
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:
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("") })
)
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