All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
protected
void
grid1_ItemDataBound(
object
sender, Telerik.Web.UI.GridItemEventArgs e)
{
if
(e.Item
is
GridDataItem)
GridDataItem itm = (GridDataItem)e.Item;
RadTextBox txt = (RadTextBox)itm.FindControl(
"RadTextBox1"
);
txt.Enabled =
false
;
}