OK. I'm using a MasterPage setup, where I have a RFD in the masterpage applied to the div that contains my content placeholder...
Materpage snippet:
<telerik:RadFormDecorator ID="RFDContent" runat="server" DecorationZoneID="content"> |
</telerik:RadFormDecorator> |
<div id="content"> |
<asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server"> |
</asp:ContentPlaceHolder> |
</div> |
Nothing out of the ordinary there as far as I know. However, in my content pages, I'm using CSSClasses to format text on the pages. Everything works fine and the RFD does its job on the controls, however, I need to be able to control the color of the text on controls the RFD is decorating: radiobuttons and checkboxes in particular.
From what I've read, I thought that the RFD was supposed to let you specify a CSSClass on a decorated object? Is this true? Currently, the behavior I'm getting is that the controls in question, with a CSSClass set, load initially correctly, but once the page completes loading, their text values (which is all that the CSSClass changes) default back to the color of that RFD's selected skin. Yes, I'm using themes to specify skins on all telerik controls that I'm using for consistency across the app, RFD included.
So, I guess the question is, is it possible to use the default skins for RFD, but still control the text colors through CSS on decorated controls in a masterpage scenario?
I hope this makes sense. Any reply or insight would be appreciate, as I need to get this functioning properly ASAP. Thanks.
Marty