All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
int
colCount = RadGrid1.Columns.Count;
count = 0;
protected
void
RadGrid1_PreRender(
object
sender, EventArgs e)
{
foreach
(GridColumn col
in
RadGrid1.MasterTableView.RenderColumns)
if
(col.ColumnType ==
"GridBoundColumn"
)
//Checking for BoundColumn
count = count + 1;
//Get the count here
}