Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
Protected Sub radGrd_GroupsChanging(ByVal sender As Object, ByVal e As Telerik.Web.UI.GridGroupsChangingEventArgs) Handles radGrd.GroupsChanging
If e.Action = GridGroupsChangingAction.Ungroup Then
If e.Expression.GroupByFields(0).FieldName = "YourFieldName" Then
e.Canceled = True
End If
End Sub