Product Bundles
DevCraft
All Telerik .NET and Kendo UI JavaScript components and AI Tools in one package.
Kendo UI
Bundle of AI Tools plus four JavaScript UI libraries built natively for jQuery, Angular, React and Vue.
Build JavaScript UI
Javascript
Telerik
Build modern .NET business apps
.Net Web
Cross-Platform
Desktop
Reporting and Documents
AI for Developers & IT
Ensure AI program success
AI Coding
AI Engineering
Additional Tools
Enhance the developer and designer experience
Testing & Mocking
Debugging
UI/UX Tools
CMS
Free Tools
Support and Learning
Productivity and Design Tools
I have a problem with ColumnChooser in RadGridView.
Please tell me how can I monitor when column visible state changed (For example when I drag and drop column from ColumnChooser to RadGridView or double click on it) ?
There may be some event ?
For
Each
c
As
GridViewDataColumn
In
Me
.RadGridView1.Columns
AddHandler
c.RadPropertyChanged,
AddressOf
Column_RadPropertyChanged
Next
Private
Sub
Column_RadPropertyChanged(
ByVal
sender
Object
,
e
RadPropertyChangedEventArgs)
If
String
.Equals(e.
Property
.Name,
"IsVisible"
)
Then
Dim
column
GridViewDataColumn =
CType
(sender, GridViewDataColumn)
MessageBox.Show(column.Name &
" visibility changed to: "
& column.IsVisible.ToString())
End
Hi !
It works. Richard thanks a lot for your help.
Regards!