Please show how to change background color of the active row of the child band. Right now with 'default' style it is dark blue.
I guess I have had wrong selectors... it works now thnx.
Hello,
I am just checking about the progress of this issue. Let me know If you need my further assistance on this issue?
Thank you for using Infragistics Components.
Hello ,
Thank you for the provided sample. I have tested it and it seems to me that everything works as expected, each row that becomes active is colored in Water yellow, also I have tried to add another css to style row from band0 in one color and active row from band1 in another and it still works. In the attached zip you will find modified sample and video of what happen on my machine. So please let me know if I am missing something.
I am waiting for your feedback.
That is what I did and somehow it still not working.. see attached
If you just want to change color of the active row you should apply ActiveRowCssClass, as it is shown on the following “WebDataGrid CSS styling guide ”
http://ko.infragistics.com/community/blogs/engineering/archive/2010/08/25/webdatagrid-css-styling-guide.aspx
in other words you should have style defined :
tbody > tr.ActiveRowClass > td
{
background-color:Gray;
background-image:none;
color:Lime;
}
and to apply it to
"
<ig:Activation ActiveRowCssClass="ActiveRowClass">
Please let me know if you have any further questions.