Hi
In my RadGrid I have one row that I do not want to be edited, so I wrote the following code:
The problem I have is that the vertical gridline between the item column and the edit command column has disappeared as shown here
Any ideas?
Thanks.
In my RadGrid I have one row that I do not want to be edited, so I wrote the following code:
protected void RadGridWaCssSettingsEditor_ItemDataBound(object sender, GridItemEventArgs e) |
{ |
if (e.Item is GridDataItem) |
{ |
GridDataItem dataItem = (GridDataItem)e.Item; |
// Do not allow the CSS property "theme" to be edited |
if (dataItem["CssProperty"].Text == "theme") |
{ |
dataItem["Edit"].Controls[0].Visible = false; |
} |
} |
} |
The problem I have is that the vertical gridline between the item column and the edit command column has disappeared as shown here
Any ideas?
Thanks.