Hi,
I have 2 listbox controls on my web page. I have one on the left that is populated from a SQL table in my database. I can then select one or more row from the left listbox and then click the right-arrow button to move the row to the right-side listbox. But I do not want to allow the right-side listbox items to be moved to the left-side listbox. So I want to know if there is a way to not display the left arrow button when items are selected on the right-side listbox.
Thanks in advance!
Here is the code for each listbox:
<telerik:RadListBox ID="lstAvailable"
runat="server"
Width="270px"
Height="200px"
SelectionMode="Multiple"
AllowTransfer="true"
TransferToID="lstMapped"
ButtonSettings-AreaWidth="40px"
AutoPostBackOnTransfer="true"
DataTextField="ReportName"
DataValueField="ReportID"
OnTransferring="lstAvailable_Transferring">
</telerik:RadListBox>
<telerik:RadListBox ID="lstMapped"
runat="server"
Width="270px"
Height="200px"
SelectionMode="Multiple"
AllowDelete="true"
AllowReorder="true"
AllowTranfer="false"
ButtonSettings-AreaWidth="40px"
AutoPostBackOnTransfer="false"
DataTextField="ReportName"
DataValueField="ReportID"
OnDeleting="lstMapped_Deleting">
</telerik:RadListBox>