In Development
Last Updated: 09 Sep 2024 11:16 by ADMIN
Scheduled for 2024 Q4 (November)
Nadya
Created on: 19 Aug 2024 11:11
Category: GridView
Type: Bug Report
1
RadGridView: Selection gets lost when expand/collapse parent row
  1. Group by some column or create hierarchy.
  2. Select all from the parent header check box or in the header.
  3. Expand parent row
  4. As a result, the row expands, but selection disappears.
1 comment
ADMIN
Nadya | Tech Support Engineer
Posted on: 19 Aug 2024 11:24

Hello, 

Currently, you can use the following workaround;

private void RadGridView1_SelectionChanging(object sender, GridViewSelectionCancelEventArgs e)
{
    if (e.Rows[0] is GridViewGroupRowInfo)
    {
        e.Cancel = true;
    }
}

Regards,
Nadya | Tech Support Engineer
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.

Attached Files: