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
Hi ,
How can I find out which columns are visible in a server-side routine (some columns may have been shown/hidden with the header context menu)?
List<GridColumn> columns =
new
List<GridColumn>();
foreach
(GridColumn column
in
RadGrid1.MasterTableView.RenderColumns)
{
if
(column.Display ==
true
&& column.Visible)
columns.Add(column);
}
Hi
I have tried by it show all the columns, my scenerio is , user has hidden some columns from column menu. and i need to get the columns which are currently visible