Link to home
Start Free TrialLog in
Avatar of PTBNA
PTBNA

asked on

ASP.Net 2.0 Gridview and ItemRow Theming

Not really a problem, the setting the named skin for a gridview.  

I've got three types of Item rows, one aligned Left, one Right and one center.

Is there a way using the Theme to set these??

I"ve got the theme for the grid already and it works, but Can't find a way to set the ItemRow Style.
<asp:gridview runat="server" skinID="GridView"
            AllowPaging="True" AllowSorting="True" AutoGenerateColumns="False"  EnableSortingAndPagingCallbacks="True" PageSize="20">
        <RowStyle BackColor="#FFFBD6" Font-Names="Arial" Font-Size="8pt" ForeColor="Black" Wrap="False" />
        <HeaderStyle BackColor="Maroon" Font-Names="Arial" Font-Size="8pt" ForeColor="White" />
        <AlternatingRowStyle BackColor="White" Wrap="False" />
        <SelectedRowStyle BackColor="LightGray" Font-Bold="True" />
        <FooterStyle BackColor="Maroon" BorderColor="White" Font-Bold="True" Font-Names="Arial" Font-Size="8pt" />
</asp:GridView>
ASKER CERTIFIED SOLUTION
Avatar of knucklesbamm
knucklesbamm

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial