Hi Telerik,
We use buttons across the page as navigation. So all buttons are setup as follows:
<telerik:RadPageLayout runat="server" GridType="Fluid" ShowGrid="false"> <Rows> <telerik:LayoutRow CssClass="LayoutRowStyle LayoutRowHamburger"> <Columns> <telerik:LayoutColumn Span="2" SpanXs="12" SpanSm="6" SpanMd="3"> <div class="divStandard"> <telerik:RadButton runat="server" ID="RadButtonBoardDetails" CausesValidation="false" AutoPostBack="false" Text="Details" Width="100%" OnClientClicked="OnClientClickedNavSubButton" RenderMode="Lightweight" ToggleType="CheckBox" Checked="true" CommandArgument="../boards/boarddetails.aspx"> </telerik:RadButton> </div> </telerik:LayoutColumn> <telerik:LayoutColumn Span="2" SpanXs="12" SpanSm="6" SpanMd="3"> <div class="divStandard"> <telerik:RadButton runat="server" ID="RadButtonCreate" CausesValidation="false" AutoPostBack="false" Text="New" Width="100%" OnClientClicked="OnClientClickedNavSubButton" RenderMode="Lightweight" CommandArgument="../boards/helper/boardcreate.aspx"> <Icon PrimaryIconCssClass="rbAdd" /> </telerik:RadButton> </div> </telerik:LayoutColumn> <telerik:LayoutColumn Span="2" SpanXs="12" SpanSm="6" SpanMd="3"> <div class="divStandard"> <telerik:RadButton runat="server" ID="RadButtonBoardGroupLinks" CausesValidation="false" AutoPostBack="false" Text="Group Links" Width="100%" OnClientClicked="OnClientClickedNavSubButton" RenderMode="Lightweight" CommandArgument="../boards/boardgrouplinks.aspx"> </telerik:RadButton> </div> </telerik:LayoutColumn>..... </Rows> </telerik:RadPageLayout>
So when the button is clicked we keep it "checked" and the theme looks like an "active" page for that button. This ONLY works with some themes. How can we change this in our Skin specific CSS, that would let us keep a checked state, like its being Hovered.
Ex: The first button is marked checked and if using the "Simple" theme, it looks nice when checked. If the "Web20" is used, the checked does nothing to the checked state CSS of the button.
As you can see from the attach files, the Web20 has the same CSS as checked and unchecked.
All of the Skins handle the checked state CSS differently. We would like to control is via stylesheets.
Thanks for the help!
