This is a migrated thread and some comments may be shown as answers.

Fieldset getting styled even though ControlsToSkip="Fieldset" is set

2 Answers 117 Views
FormDecorator
This is a migrated thread and some comments may be shown as answers.
Dev
Top achievements
Rank 1
Dev asked on 15 Nov 2013, 11:57 AM
In 2013 Q3 we are getting borders applied to our fieldset elements in Office 2007 skin.  The relevant CSS rule appears to be from Telerik.Web.UI.Skins.FormDecoratorLite.css:
.RadForm fieldset {
    padding: 10px 15px;
    border-width: 1px;
    border-style: solid;
}
Our form decorator declaration is:
<telerik:RadFormDecorator ID="RadFormDecoratorMain" runat="server" DecoratedControls="All" ControlsToSkip="Fieldset">
</telerik:RadFormDecorator>
Is there a change to how controls should be excluded, or is this a bug?

2 Answers, 1 is accepted

Sort by
0
Bozhidar
Telerik team
answered on 19 Nov 2013, 09:23 AM
Hi,

This is a bug with latest offical release - Q3 SP1 2013 the style is changed to:

.RadForm.rfdFieldset fieldset {
    padding: 10px 15px;
    border-width: 1px;
    border-style: solid; }

So check once again your controls version. The only left, that will be removed with the next official release is that when you skip the fieldset decoration, a rounded corner is still applied, but it is already fixed.

Regards,
Bozhidar
Telerik
Explore the entire set of ASP.NET AJAX controls we offer here and browse the myriad online demos to learn more about the components and the features they incorporate.
0
Dev
Top achievements
Rank 1
answered on 22 Nov 2013, 03:59 PM
Thanks, I've downloaded the update and it seems to be fixed.
Tags
FormDecorator
Asked by
Dev
Top achievements
Rank 1
Answers by
Bozhidar
Telerik team
Dev
Top achievements
Rank 1
Share this question
or