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 for UI
AI Engineering
Additional Tools
Enhance the developer and designer experience
Testing & Mocking
Debugging
UI Tools
CMS
Free Tools
Support and Learning
Productivity and Design Tools
I was new to telerik. I want to hide columns in radgridview which column all cells are null values by programmatically.
thanks
private
void
RadButton1_Click(
object
sender, EventArgs e)
{
foreach
(var col
in
radGridView1.Columns)
bool
valueFound =
false
;
(var row
radGridView1.Rows)
if
(row.Cells[col.Name].Value !=
null
&& row.Cells[col.Name].Value != DBNull.Value)
true
break
}
col.IsVisible = valueFound;