Hi,
i got a grid in which one item is more important than the others.
How can i change its appearance or highlight it?
Im currently there but i dont know what to do..
thx Mario
i got a grid in which one item is more important than the others.
How can i change its appearance or highlight it?
Im currently there but i dont know what to do..
| protected void RadGridHistory_ItemDataBound(object sender, GridItemEventArgs e) |
| { |
| if (e.Item is GridDataItem) |
| { |
| GridDataItem item = (GridDataItem)e.Item; |
| string key = item.KeyValues; |
| int id = ParseIdFromKeyValueString(key); |
| if (id == Convert.ToInt32(Request["id"].ToString())) |
| { |
| // change appearance. like bold text of the GridBoundColumns |
| } |
| } |
| } |
thx Mario