Hi all,

I'm using the GridView control to display some data. When i set the RowStyle->CssClass and AlternatingRowStyle->CssClass property, a problem occurs in the generated code. The lines contains two class tags with the value specified in the 2 properties.
For example :
<asp:GridView runat="server" ID="ListeDossiers" GridLines="Vertical" AutoGenerateColumns="false" OnRowCommand="ListeDossier_Command">
      <HeaderStyle CssClass="ligne_header" />
      <RowStyle CssClass="ligne1" />
      <AlternatingRowStyle CssClass="ligne2" />
      <Columns>
      ...
      </Columns>
</asp:GridView>

The first line is generated as <tr class="ligne1"> stuff </tr>.
The second one is generated as <tr class="ligne1" class="ligne2"> stuff </tr>

Should i file a bug for this ?

Thanks,
Johann Blais.
_______________________________________________
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list

Reply via email to