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

Change button position

1 Answer 156 Views
ListBox
This is a migrated thread and some comments may be shown as answers.
Damian
Top achievements
Rank 1
Damian asked on 05 Jun 2013, 08:36 AM
Hi Telerik,

I was wondering if there is any way to position the transferring buttons below the radlistbox. The radlistboxes are one below the other, but the button are placed on right hand side of the first radlistbox. I tried with CSS but I didnt get my required style.

Thanks for replying,
Damian.

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 05 Jun 2013, 09:37 AM
Hi Damian,

Instead of using CSS, you can apply the following ButtonSettings to the first RadListBox to place the Buttons below the control.

ASPX:
<telerik:RadListBox ID="RadListBox1" runat="server" EnableDragAndDrop="true" Skin="Web20"
    AllowTransfer="true" TransferToID="RadListBox2">
    <ButtonSettings AreaHeight="30" Position="Bottom" HorizontalAlign="Center" />
    <Items>
        <telerik:RadListBoxItem runat="server" Text="Item 1" />
        <telerik:RadListBoxItem runat="server" Text="Item 2" />
    </Items>
</telerik:RadListBox>

Thanks,
Shinu.
Tags
ListBox
Asked by
Damian
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or