Completed
Last Updated: 21 Apr 2017 14:10 by Imported User
ADMIN
Created by: Marin Bratanov
Comments: 1
Category: FormDecorator
Type: Feature Request
0
At present, the MetroTouch scrollbars in the Lightweight RenderMode are dark (almost black). All metro-based skins must have gray scrollbars.

Scrollbars are usually considered part of the browser and users are used to them as they are by default. Thus, using the default browser scrollbars may be the best course of action:

<telerik:RadFormDecorator runat="server" ID="rfd1" RenderMode="Lightweight" ControlsToSkip="Scrollbars" Skin="MetroTouch" />

Alternatively, use a CSS rule like this to unify the metro-based scrolblars (replace MetroTouch with Metro for the Metro skin):

html.RadForm_MetroTouch.rfdScrollBars {
scrollbar-3dlight-color: #cbcbcb;
scrollbar-arrow-color: #787878;
scrollbar-base-color: #787878;
scrollbar-darkshadow-color: #a7a7a7;
scrollbar-face-color: #d5d5d5;
scrollbar-highlight-color: #e6e6e6;
scrollbar-shadow-color: #d5d5d5;
scrollbar-track-color: #f5f5f5; }

Unplanned
Last Updated: 07 Jan 2021 14:31 by ADMIN
Created by: mmbm
Comments: 0
Category: FormDecorator
Type: Feature Request
1
I noticed that RadFormDecorator does not handle checkboxes in a RadListBox. I had to use an item template. It would be nice if it automatically decorated them.
Thanks!
Unplanned
Last Updated: 27 Jun 2016 11:49 by sukhwinder
Completed
Last Updated: 19 Aug 2015 07:05 by ADMIN
Won't Fix
Last Updated: 08 Jun 2022 08:27 by ADMIN
Created by: mmbm
Comments: 1
Category: FormDecorator
Type: Feature Request
0
In IE11, checkboxes are rendered as a flat style with a black checkmark, as apposed to the 3D look rendered by IE9. When using a RadTreeView with checkboxs and form decorator, the checkboxes are not styled to look like the 3D ones. Checkboxes that are not in trees are styled, and therefore, the checkboxes look differently. It's expecially apparent when both treed and non-tree checkboxes are on the same page. See my support ticket 815961 for my question about this.
Completed
Last Updated: 02 Mar 2022 15:41 by ADMIN
ADMIN
Created by: Misho
Comments: 0
Category: FormDecorator
Type: Feature Request
2
When disabled radiobuttons are decorated by RafFormDecorator they are rendered as enabled in Internet Explorer 11. 
The issue could be worked around by setting "RadioButtons" to the ControlsToSkip attribute of the FormDecorator.
Declined
Last Updated: 20 Apr 2022 15:53 by ADMIN
ADMIN
Created by: Joana
Comments: 1
Category: FormDecorator
Type: Feature Request
0

			
Completed
Last Updated: 22 Jul 2016 08:43 by ADMIN
Created by: Henrik
Comments: 1
Category: FormDecorator
Type: Feature Request
1
Hello.

Would you please concider adding styling of anchor elements to the formdecorator?

It would make it easier styling existing pages.
Declined
Last Updated: 22 Jul 2016 08:07 by ADMIN
Completed
Last Updated: 01 Sep 2016 14:31 by ADMIN
Completed
Last Updated: 26 Feb 2014 12:17 by ADMIN
Typing a letter key must move the focus to the next instance of a visible node whose title begins with that printable letter.
Completed
Last Updated: 23 Apr 2015 10:58 by ADMIN
Tabbing to decorated select element by RadFormDecorator, focuses the original select element. For the time being the following workaround can be used:

JavaScript:

        <script>
            function pageLoad() {
                $ = $telerik.$;
                $.each($(".rfdRealInput"), function (index, value) { value.setAttribute("tabindex", "-1") });
            }
        </script>

ASPX:
        <telerik:RadFormDecorator ID="RadFormDecorator1" runat="server" DecoratedControls="All" RenderMode="Lightweight" />
        <asp:TextBox ID="Textbox1" runat="server" />
        <asp:DropDownList ID="Dropdownlist1" runat="server">
            <asp:ListItem Text="text1" />
            <asp:ListItem Text="text2" />
        </asp:DropDownList>
        <asp:TextBox ID="Textbox2" runat="server" />
        <telerik:RadButton ID="RadButton1" runat="server" />


Completed
Last Updated: 12 Nov 2015 18:31 by Marco
Declined
Last Updated: 01 Nov 2013 13:06 by ADMIN
Improve the appearance of decorated Select and ASP DropDownList by RadFormDecorator in RenderMode="Classic", so that their look resembles RadDropDownList.

For the time being RenderMode="Lightweight" can be used.

Rejected with comment:
Future appearance improvements for RadFormDecorator in Classic mode will not be availalble anymore. The expection will be issues related to functionality or critical appearance issues.
Completed
Last Updated: 21 Jun 2022 21:45 by ADMIN
ADMIN
Created by: Danail Vasilev
Comments: 1
Category: FormDecorator
Type: Feature Request
1
Currently decorated inputs by RadFormDecorator are set with TabIndex="-1", so that they cannot be focused. Expose an additional property in RadFormDecorator through which the decorated button can be focused.

For the time being the focus() can be set to the parentNode of the button. For example:

document.getElementById('Button1').parentNode.focus();

Completed
Last Updated: 10 Aug 2021 13:48 by ADMIN

Update: The issue is not observed in Lightweight render mode

Currently text color is different in RadButton (color: #00156E) and decorated ASP Button (color: black) with RadFormDecorator for Office2007 skin. For the time being a custom CSS can be used either for the RadButton or for the decorated ASP Button: -Custom Styles for the RadFormDecorator: <style type="text/css"> .RadForm_Office2007.rfdButton a.rfdSkinnedButton, .RadForm_Office2007.rfdButton input.rfdDecorated[type="button"], .RadForm_Office2007.rfdButton input.rfdDecorated[type="reset"], .RadForm_Office2007.rfdButton input.rfdDecorated[type="submit"], .RadForm_Office2007.rfdButton .rfdSkinnedButton button, .RadForm_Office2007 a.rfdSkinnedButton, .RadForm_Office2007 .rfdSkinnedButton button, .RadForm_Office2007 .rfdSkinnedButton input.rfdDecorated, .RadForm_Office2007.rfdButton a.rfdSkinnedButton, .RadForm_Office2007.rfdButton a.rfdSkinnedButton * { color: #00156E !important; } </style> -Custom Styles for the RadButton: <style type="text/css"> .RadButton_Office2007.rbSkinnedButton, .RadButton_Office2007 .rbDecorated, .RadButton_Office2007.rbVerticalButton, .RadButton_Office2007.rbVerticalButton .rbDecorated, .RadButton_Office2007 .rbSplitRight, .RadButton_Office2007 .rbSplitLeft { color: black !important; } </style>