Hi,
Please try the following sample code snippet to achieve your scenario.
ASPX:
<
telerik:RadListBox
ID
=
"RadListBox1"
runat
=
"server"
Width
=
"200px"
TransferToID
=
"RadListBox2"
Height
=
"200px"
SelectionMode
=
"Multiple"
EnableDragAndDrop
=
"true"
AllowTransfer
=
"true"
>
<
HeaderTemplate
>
<
asp:TextBox
ID
=
"TextBox1"
runat
=
"server"
Text
=
"Header"
>
</
asp:TextBox
>
</
HeaderTemplate
>
<
FooterTemplate
>
<
asp:TextBox
ID
=
"TextBox2"
runat
=
"server"
Text
=
"Footer"
></
asp:TextBox
>
</
FooterTemplate
>
<
Items
>
<
telerik:RadListBoxItem
Text
=
"Argentina"
></
telerik:RadListBoxItem
>
<
telerik:RadListBoxItem
Text
=
"Australia"
></
telerik:RadListBoxItem
>
<
telerik:RadListBoxItem
Text
=
"Brazil"
></
telerik:RadListBoxItem
>
<
telerik:RadListBoxItem
Text
=
"Canada"
></
telerik:RadListBoxItem
>
<
telerik:RadListBoxItem
Text
=
"Chile"
></
telerik:RadListBoxItem
>
<
telerik:RadListBoxItem
Text
=
"China"
></
telerik:RadListBoxItem
>
<
telerik:RadListBoxItem
Text
=
"Egypt"
></
telerik:RadListBoxItem
>
<
telerik:RadListBoxItem
Text
=
"England"
></
telerik:RadListBoxItem
>
<
telerik:RadListBoxItem
Text
=
"France"
></
telerik:RadListBoxItem
>
</
Items
>
</
telerik:RadListBox
>
<
telerik:RadListBox
ID
=
"RadListBox2"
runat
=
"server"
Width
=
"200px"
Height
=
"200px"
SelectionMode
=
"Multiple"
EnableDragAndDrop
=
"true"
>
</
telerik:RadListBox
>
Thanks,
Shinu.