I would, kindly, ask if there is a way how to get background color set for nested gridview using JavaScript.
Actually, I have a parent GridviewAGK and in one column, a nested GridViewNestedAGK, as shown in excerpt of .asxp code, bellow:
<asp:GridView ID="GridViewAGK" runat="server" Height="50px"
...
SelectMethod="GridViewAGK_GetData"
...
DeleteMethod="GridViewAGK_DeleteItem"
OnRowDataBound="GridViewAGK_RowDataBound"
>
<HeaderStyle CssClass="HeaderStyle" />
<RowStyle CssClass="RowStyle" />
<AlternatingRowStyle CssClass="AlternatingRowStyle" />
<EditRowStyle CssClass="EditRowStyle" />
<Columns>
<asp:BoundField DataField="AGKID" SortExpression="AGKID" HeaderText="ID AGK" ReadOnly="true" />
...
<asp:TemplateField HeaderTe ...
Go to the complete details ...