or
Hi
I have in my grid one column that is pinned. User can also select many rows.
Problem is that when many rows are selected cells from pinned column for these rows doesn’t change background – take a look on screen shot.
For pinned column I use standard GridViewTextBoxColumn.
If this column is not pinned this problem doesn`t occur.
How can I resolve this problem?
Regards
if
(e.CellElement
is
GridDetailViewCellElement)
{
GridDetailViewCellElement cell = e.CellElement
as
GridDetailViewCellElement;
cell.ChildTableElement.DrawBorder =
false
;
cell.ChildTableElement.TableBodyElement.DrawBorder =
false
;
}