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

Round corner for telerik radtextbox

4 Answers 327 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
sho
Top achievements
Rank 1
sho asked on 19 Aug 2011, 01:01 PM
Hi,


How can I make telerik radtextbox rounded corner?

Thanks,

4 Answers, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 19 Aug 2011, 01:14 PM
Hello Sho,

You can achieve this using RadFormDecorator.It will not style elements that have a class assigned - in such case we  want to have control over the look of the element. This being said you could force the decorator to style RadTextBox if you set RadTextBox's Skin to an empty string.
aspx:
<telerik:RadFormDecorator ID="RadFormDecorator1" runat="server" DecoratedControls="Textbox"
        EnableRoundedCorners="true" />
    <telerik:RadTextBox ID="RadTextBox1" runat="server" Text="RadTextBox1" Skin="">
    </telerik:RadTextBox>

Thanks,
Shinu.
0
Anna
Top achievements
Rank 2
answered on 19 Jun 2013, 03:13 PM
This method clearly no longer works with the latest update Q2 2013.  I would be curious to know how to achieve this now.
Thank you,
Anna
0
msigman
Top achievements
Rank 2
answered on 19 Jun 2013, 04:19 PM
I can confirm that this is an issue I am seeing on Q2 2013 as well, and was previously working up to Q1 2013.  It renders correctly at first, but as soon as the user hovers over the field, the rounded corners are lost.  I've alerted the Telerik staff so they can address it.
0
Danail Vasilev
Telerik team
answered on 20 Jun 2013, 12:19 PM
Hi All,

This seems to be an issue with the decoration of RadInput by RadFormDecorator. It has been logged as a feedback item here, so that you can monitor, comment or raise its priority by voting on it. For the time being you can manually add RadFormDecorator's classes to the RadInput, so that it persists its appearance on hover too:
<telerik:RadFormDecorator ID="RadFormDecorator1" runat="server" DecoratedControls="All" Skin="Black"
    EnableRoundedCorners="true" />
<telerik:RadTextBox ID="RadTextBox1" runat="server" Text="RadTextBox1" Skin="" CssClass="rfdRoundedCorners rfdDecorated">
</telerik:RadTextBox>


Regards,
Danail Vasilev
Telerik
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to the blog feed now.
Tags
General Discussions
Asked by
sho
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Anna
Top achievements
Rank 2
msigman
Top achievements
Rank 2
Danail Vasilev
Telerik team
Share this question
or