Hi!
See attached images...
We have two areas that we cannot seem to be able to style.
1. This is a resizable grid and we would like change the white to something more neutral. Is this area available via a CSS style.
2. This is a heirarchy grid. We are able to get at the expand/collapse cell (see code below), but how do we get at the cell below it?
Thanks for your help!
Michael
See attached images...
We have two areas that we cannot seem to be able to style.
1. This is a resizable grid and we would like change the white to something more neutral. Is this area available via a CSS style.
2. This is a heirarchy grid. We are able to get at the expand/collapse cell (see code below), but how do we get at the cell below it?
protected void radGridCaseNumbers_ItemCreated(object sender, GridItemEventArgs e) { if (e.Item is GridDataItem) { (e.Item as GridDataItem)["ExpandColumn"].BackColor = Color.FromArgb(50, 193, 224, 255); } }Thanks for your help!
Michael