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

Form Decorator not working on some textbox

1 Answer 57 Views
FormDecorator
This is a migrated thread and some comments may be shown as answers.
alias
Top achievements
Rank 1
alias asked on 14 Apr 2012, 05:50 PM
hi telerik

I'm working with Form Decorator.the text box does not rounded corner. why ?
RadFormDecorator place is top of page after Scriptmanager

<telerik:RadFormDecorator ID="_FormDecorator" Runat="server" 
                                 DecoratedControls="All" Skin="Sunset" EnableRoundedCorners="true" />



see attachment



1 Answer, 1 is accepted

Sort by
0
Bozhidar
Telerik team
answered on 17 Apr 2012, 08:17 AM
Hello,

The following code works as expected on my side:

<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<head runat="server">
    <title></title>
    <style type="text/css">
         
    </style>
</head>
<body>
    <form id="form1" runat="server">
    <asp:ScriptManager ID="ScriptManager1" runat="server">
    </asp:ScriptManager>
    <telerik:RadFormDecorator ID="rfd1" runat="server" DecoratedControls="All" Skin="Sunset" />
    <asp:TextBox runat="server"></asp:TextBox><br /><br />
    <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox><br /><br />
    <asp:TextBox ID="TextBox2" runat="server"></asp:TextBox><br /><br />
    <asp:TextBox ID="TextBox3" runat="server" TextMode="MultiLine"></asp:TextBox>
    </form>
</body>
</html>

Attached rfdround.gif shows the result in the browser.

All the best,
Bozhidar
the Telerik team
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.
Tags
FormDecorator
Asked by
alias
Top achievements
Rank 1
Answers by
Bozhidar
Telerik team
Share this question
or