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

ListBox / Button Configuration

Example Configuration
  • Button position:
    select
  • Vertical Alignment:
    select
   
  • Argentina
  • Australia
  • Brazil
  • Canada
  • Chile
  • China
  • Egypt
  • England
  • France
  • Germany
  • India
  • Indonesia
  • Kenya
  • Mexico
  • New Zealand
  • South Africa
  • USA

  • You can control the way buttons are rendered using the ButtonSettings property.

    You can display text next to the image by setting the RenderButtonText property to true. Do not forget to adjust the AreaWidth( or AreaHeight) property in order to accomodate the text:

    <RadListBox runat="server" ID="RadListBox1" AllowReorder="true" >
    	<ButtonSettings AreaWidth="100px" RenderButtonText="True" />
    </RadListBox/>
    

    You can change the position of the buttons by using the Position property of the ButtonSettings:

    <RadListBox runat="server" ID="RadListBox1" AllowReorder="true" >
    	<ButtonSettings Position="Bottom" />
    </RadListBox/>
    

    You can also specify the alignment of the buttons by using the HorizontalAlign and VerticalAlign properties depending on the Position property:

    <RadListBox runat="server" ID="RadListBox1" AllowReorder="true" >
    	<ButtonSettings Position="Bottom" HorizontalAlign="Center" />
    </RadListBox/>
    
    <RadListBox runat="server" ID="RadListBox1" AllowReorder="true" >
    	<ButtonSettings Position="Right" VerticalAlign="Middle" />
    </RadListBox/>
    

Source Code

C# VB.NET
Show code in new window Demo isolation steps
  • <%@ Page Language="C#" AutoEventWireup="true" CodeFile="DefaultCS.aspx.cs" Inherits="ListBox_Examples_Appearance_ButtonText_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" />
        <style type="text/css">
            #ConfiguratorPanel1 ul
            {
                list-style: none;
                padding: 0;
            }
            #ConfiguratorPanel1 ul li
            {
                padding: 5px 0;
            }
        </style>
    </head>
    <body class="BODY">
        <form runat="server" id="mainForm">
        <telerik:RadScriptManager runat="server" ID="RadScriptManager1" />
        <qsf:Header runat="server" ID="Header1" NavigationLanguage="C#"></qsf:Header>
        <telerik:RadAjaxPanel runat="server" ID="RadAjaxPanel1">
            <qsf:ConfiguratorPanel runat="server" ID="ConfiguratorPanel1" Orientation="Vertical" Expanded="true">
                <ul>
                    <li>Button position:
                        <telerik:RadComboBox runat="server" ID="ButtonPositionComboBox" AutoPostBack="true">
                            <Items>
                                <telerik:RadComboBoxItem Text="Top" Value="Top" />
                                <telerik:RadComboBoxItem Text="Right" Selected="true" Value="Right" />
                                <telerik:RadComboBoxItem Text="Bottom" Value="Bottom" />
                                <telerik:RadComboBoxItem Text="Left" Value="Left" />
                            </Items>
                        </telerik:RadComboBox>
                    </li>
                    <asp:PlaceHolder runat="server" ID="VerticalAlignment">
                        <li>Vertical Alignment:
                            <telerik:RadComboBox runat="server" ID="VerticalAlignmentComboBox" AutoPostBack="true">
                                <Items>
                                    <telerik:RadComboBoxItem Text="Top" Value="Top" Selected="true" />
                                    <telerik:RadComboBoxItem Text="Middle" Value="Middle" />
                                    <telerik:RadComboBoxItem Text="Bottom" Value="Bottom" />
                                </Items>
                            </telerik:RadComboBox>
                        </li>
                    </asp:PlaceHolder>
                    <asp:PlaceHolder runat="server" ID="HorizontalAlignment" Visible="false">
                        <li>Horizontal Alignment:
                            <telerik:RadComboBox runat="server" ID="HorizontalAlignmentComboBox" AutoPostBack="true">
                                <Items>
                                    <telerik:RadComboBoxItem Text="Left" Value="Left" Selected="true" />
                                    <telerik:RadComboBoxItem Text="Center" Value="Center" />
                                    <telerik:RadComboBoxItem Text="Right" Value="Right" />
                                </Items>
                            </telerik:RadComboBox>
                        </li>
                    </asp:PlaceHolder>
                    <li>
                        <asp:CheckBox runat="server" ID="RenderTextCheckBox" AutoPostBack="true" Text="Render button text" />
                    </li>
                </ul>
            </qsf:ConfiguratorPanel>
            <telerik:RadListBox runat="server" ID="RadListBox1" AllowReorder="true" AllowDelete="true"
                Height="200px" Width="240px">
                <Items>
                    <telerik:RadListBoxItem Text="Argentina" />
                    <telerik:RadListBoxItem Text="Australia" />
                    <telerik:RadListBoxItem Text="Brazil" Selected="true" />
                    <telerik:RadListBoxItem Text="Canada" />
                    <telerik:RadListBoxItem Text="Chile" />
                    <telerik:RadListBoxItem Text="China" />
                    <telerik:RadListBoxItem Text="Egypt" />
                    <telerik:RadListBoxItem Text="England" />
                    <telerik:RadListBoxItem Text="France" />
                    <telerik:RadListBoxItem Text="Germany" />
                    <telerik:RadListBoxItem Text="India" />
                    <telerik:RadListBoxItem Text="Indonesia" />
                    <telerik:RadListBoxItem Text="Kenya" />
                    <telerik:RadListBoxItem Text="Mexico" />
                    <telerik:RadListBoxItem Text="New Zealand" />
                    <telerik:RadListBoxItem Text="South Africa" />
                    <telerik:RadListBoxItem Text="USA" />
                </Items>
            </telerik:RadListBox>
        </telerik:RadAjaxPanel>
        <qsf:Footer runat="server" ID="Footer1" />
        </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