i have an asp button inside radgrid with an specific css.
<asp:LinkButton ID="lnkThreadTitle" CommandName="Select" runat="server" CssClass="blog_posttitle"></asp:LinkButton>
Problem is the link button inherits the rad grid "a" link css definition and wont inherit its specific css class "blog_posttitle"
Also tried to input it in the code behind lnkThreadTitle.CssClass = "blog_posttitle";
Still inherits the grid link css below
Note: goal of this is make the .blog_posttitle skinnable by anyone.
help please. how do i make the asp linkbutton inherit my specific class and not the one from radgrid.
thanks much in advance.
<asp:LinkButton ID="lnkThreadTitle" CommandName="Select" runat="server" CssClass="blog_posttitle"></asp:LinkButton>
Problem is the link button inherits the rad grid "a" link css definition and wont inherit its specific css class "blog_posttitle"
Also tried to input it in the code behind lnkThreadTitle.CssClass = "blog_posttitle";
Still inherits the grid link css below
.RadGrid_Windows7 .rgRow a {
}
Note: goal of this is make the .blog_posttitle skinnable by anyone.
help please. how do i make the asp linkbutton inherit my specific class and not the one from radgrid.
thanks much in advance.