Telerik is a leading vendor of ASP.NET AJAX, ASP.NET MVC, Silverlight, WinForms and WPF controls and components, as well as .NET Reporting, .NET ORM , .NET CMS, Code Analysis, Mocking, Team Productivity and Automated Testing Tools. Building on its expertise in interface development and Microsoft technologies, Telerik helps customers build applications with unparalleled richness, responsiveness and interactivity. Telerik products help thousands of companies to be more productive and deliver reliable applications under budget and on time.
Version Q2 2011 released 07/12/2011
select

Input / Styles

Customize RadInput by using custom CSS classes




Customize RadInput by using declarative styles







  • Apart from using a CSS skin, the RadInput look can be customized by using declarative styles or custom CSS classes. In general, the recommended way is to use custom CSS classes or a custom CSS skin.

    The first pair of RadInput controls also demonstrate how to align the left edges of the textboxes by applying width and a display:block CSS style to the control labels.

Source Code

C# VB.NET
Show code in new window Demo isolation steps
  • <%@ Page Language="c#" CodeFile="DefaultCS.aspx.cs" AutoEventWireup="false" Inherits="Telerik.InputExamplesCS.Appearance.Styles.DefaultCS" %>

    <%@ Register TagPrefix="qsf" Namespace="Telerik.QuickStart" %>
    <%@ Register TagPrefix="qsf" TagName="Header" Src="~/Common/Header.ascx" %>
    <%@ Register TagPrefix="qsf" TagName="HeadTag" Src="~/Common/HeadTag.ascx" %>
    <%@ Register TagPrefix="qsf" TagName="Footer" Src="~/Common/Footer.ascx" %>
    <%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
        <qsf:HeadTag runat="server" ID="Headtag1"></qsf:HeadTag>
        <style type="text/css">
            .MyLabel
            {
                display: block;
                width: 140px;
            }
            html body form .RadInput .MyEmptyTextBox, html body form .RadInput .MyEnabledTextBox, html body form .RadInput .MyHoveredTextBox, html body form .RadInput .MyFocusedTextBox, html body form .RadInput .MyInvalidTextBox, html body form .RadInput .MyNegativeTextBox
            {
                border-width: 2px;
                border-color: #a9c9a9;
                font: 14px/18px arial,sans-serif;
            }
            html body .RadInput .MyEmptyTextBox
            {
                color: #999;
            }
            html body form .RadInput .MyEnabledTextBox
            {
            }
            html body form .RadInput .MyHoveredTextBox
            {
                border-color: #6c6;
                background: #efe;
            }
            html body form .RadInput .MyFocusedTextBox
            {
                border-color: #3a3;
                background: #efe;
            }
            html body form .RadInput .MyInvalidTextBox
            {
                border-color: #f33;
                background: none #ff9;
            }
            html body form .RadInput .MyNegativeTextBox
            {
                color: #930;
                font-weight: bold;
            }
        </style>
    </head>
    <body class="BODY">
        <form runat="server" id="mainForm" method="post">
        <qsf:Header runat="server" ID="Header1" NavigationLanguage="C#" ShowSkinChooser="false">
        </qsf:Header>
        <telerik:RadScriptManager ID="RadScriptManager1" runat="server" />
        <!-- content start -->
        <div style="float: left; width: 320px; padding: 0 20px">
            <h3 class="qsfSubtitle">
                Customize RadInput by using custom CSS classes</h3>
            <br />
            <telerik:RadNumericTextBox ID="RadNumericTextBox2" runat="server" Width="300px" Value="99.99"
                EmptyMessage="type a number..." Label="RadNumericTextBox" CssClass="MyEnabledTextBox"
                LabelCssClass="MyLabel">
                <EmptyMessageStyle CssClass="MyEmptyTextBox" />
                <EnabledStyle CssClass="MyEnabledTextBox" />
                <FocusedStyle CssClass="MyFocusedTextBox" />
                <HoveredStyle CssClass="MyHoveredTextBox" />
                <InvalidStyle CssClass="MyInvalidTextBox" />
                <NegativeStyle CssClass="MyNegativeTextBox" />
            </telerik:RadNumericTextBox>
            <br />
            <br />
            <telerik:RadDateInput ID="RadDateInput2" runat="server" Width="300px" DisplayDateFormat="g"
                SelectedDate="10/10/2005 10:11:12" EmptyMessage="enter a date..." Label="RadDateInput"
                CssClass="MyEnabledTextBox" LabelCssClass="MyLabel">
                <EmptyMessageStyle CssClass="MyEmptyTextBox" />
                <EnabledStyle CssClass="MyEnabledTextBox" />
                <FocusedStyle CssClass="MyFocusedTextBox" />
                <HoveredStyle CssClass="MyHoveredTextBox" />
                <InvalidStyle CssClass="MyInvalidTextBox" />
            </telerik:RadDateInput>
        </div>
        <div style="float: right; width: 320px; padding: 0 20px">
            <h3 class="qsfSubtitle">
                Customize RadInput by using declarative styles</h3>
            <br />
            <telerik:RadNumericTextBox ID="RadNumericTextBox1" runat="server" Width="300px" Value="99.99"
                EmptyMessage="type a number..." Label="RadNumericTextBox" BorderWidth="2px" Font-Size="14px"
                Font-Names="Arial">
                <EmptyMessageStyle ForeColor="Gray" />
                <EnabledStyle BorderColor="#a9a9c9" BackColor="White" />
                <FocusedStyle BorderColor="DeepSkyBlue" BackColor="AliceBlue" />
                <HoveredStyle BorderColor="Turquoise" BackColor="LightCyan" />
                <InvalidStyle BorderColor="Crimson" BackColor="LightYellow" />
                <NegativeStyle ForeColor="Red" />
            </telerik:RadNumericTextBox>
            <br />
            <br />
            <telerik:RadDateInput ID="RadDateInput1" runat="server" Width="300px" DisplayDateFormat="g"
                SelectedDate="10/10/2005 10:11:12" Label="RadDateInput" EmptyMessage="enter a date..."
                BorderWidth="2px" Font-Size="14px" Font-Names="Arial">
                <EmptyMessageStyle ForeColor="Gray" />
                <EnabledStyle BorderColor="#a9a9c9" BackColor="White" />
                <FocusedStyle BorderColor="DeepSkyBlue" BackColor="AliceBlue" />
                <HoveredStyle BorderColor="Turquoise" BackColor="LightCyan" />
                <InvalidStyle BorderColor="Crimson" BackColor="LightYellow" />
            </telerik:RadDateInput>
        </div>
        <div class="qsfClearFloat">
            <!-- -->
        </div>
        <br />
        <br />
        <!-- content end -->
        <qsf:Footer runat="server" ID="Footer1"></qsf:Footer>
        </form>
    </body>
    </html>

Get more than expected!

 
 

Take your time to truly experience the power of RadControls for ASP.NET AJAX with a free 60-day trial backed up by Telerik’s unlimited dedicated support.

Download your RadControls for ASP.NET AJAX trial and jumpstart your development with the available Getting Started resources.

If you have any questions, do not hesitate to contact us at sales@telerik.com.

Copyright 2002-2024 © Telerik. All right reserved
Telerik Inc, 201 Jones Rd, Waltham, MA 02451