New to Telerik UI for ASP.NET CoreStart a free 30-day trial

Preventing the User from Removing the Initial Groups, Changing their Order, or Adding New Groups

Environment

ProductTelerik UI for ASP.NET Core Grid
Progress Telerik UI for ASP.NET Core versionCreated with the 2023.3.1010 version

Description

How can I prevent the user from moving the initially added groups of the Grid, changing their order, or adding new groups?

Solution

  1. Create a Grid with initial groups.

  2. Handle the Group event of the Grid.

  3. Within the Group event handler, get the current Grid groups by using the group() method of the DataSource.

  4. Check if the number of initial groups matches the number of current groups and if the first initial group matches the current first group and prevent the default event action if this condition is not met.

    Razor
        @(Html.Kendo().Grid<Kendo.Mvc.Examples.Models.ProductViewModel>()
            .Name("grid")
            .Groupable()
            .Events(ev => ev.Group("onGroup"))
            .DataSource(dataSource => dataSource
                .Ajax()
                .Group(groups => 
                {
                    groups.Add(p => p.UnitsInStock);
                    groups.Add(p => p.UnitsOnOrder);
                })
                ...
            )
            ...
        )

For a runnable example based on the code above, refer to the following REPL samples:

More ASP.NET Core Grid Resources

See Also