After disabling the buttoncolumn in a grid when clicked the confirm text still shows. The button does not fire which is good. how do I keep the confirm text from showing. I tried the following which does not work.
protected void RadGrid1_PreRender(object sender, EventArgs e) { foreach (GridDataItem DataItem in RadGrid1.Items) { if (DataItem["Import"].Text == "0") { DataItem["ImportColumn"].Enabled = false; TableCell cell = (TableCell)DataItem["ImportColumn"]; cell.Enabled = false; } }