All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
<
telerik:GridBoundColumn
UniqueName
=
"OrderID"
HeaderText
DataField
ReadOnly
"true"
></
>
protected
void
RadGrid1_PreRender(
object
sender, EventArgs e)
{
foreach
(GridColumn col
in
RadGrid1.MasterTableView.RenderColumns)
if
(col.ColumnType ==
"GridBoundColumn"
)
GridBoundColumn boundCol = (GridBoundColumn)col;
boundCol.ReadOnly =
true
;
}