Skip to content
New issue

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

ChipList clicks close the editing cell of the Grid #8103

Open
eyupyusein opened this issue Jan 14, 2025 · 0 comments
Open

ChipList clicks close the editing cell of the Grid #8103

eyupyusein opened this issue Jan 14, 2025 · 0 comments

Comments

@eyupyusein
Copy link
Contributor

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

@github-actions github-actions bot added the FP: Unplanned Sync status with associated Feedback Item label Jan 14, 2025
@eyupyusein eyupyusein added Bug C: Grid S: Wrappers (ASP.NET Core) C: ChipList and removed FP: Unplanned Sync status with associated Feedback Item labels Jan 14, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant