I'm using RadTreeView and RadListBox. I have an usual requierement considering the scenario i have in the left side a RadTreeView incorporated inside the RadlistBox and in the right side i have the RadListBox. I have two issues :
1 - My issue is that how can i select one or more element on the RadTreeView and copy them inside the RadListBox?
2 - There's a way to select a node with a relative child why the node is clicked?
Can you please give me some reply
Thanks
My jsp
<td> <asp:Panel ID="pnlDealers" runat="server"> <telerik:RadListBox ID="rlbDealer" runat="server" Height="200" Width="250" AllowTransfer="true" ButtonSettings-Position="Right" ButtonSettings-TransferButtons="All" TransferMode="Copy" SelectionMode="Multiple" TransferToID="rlbDealers" AutoPostBackOnTransfer="true" CausesValidation="false"> <ItemTemplate> <div> <telerik:RadTreeView ID="rtvDealersAvailable" runat="server" OnLoad="rtvDealersAvailable_Load" OnNodeClick="rtvDealersAvailable_NodeClick"> </telerik:RadTreeView> </div> </ItemTemplate> <Items> <telerik:RadListBoxItem /> </Items> </telerik:RadListBox> <telerik:RadListBox ID="rlbDealers" runat="server" SelectionMode="Multiple" Height="200" Width="250"> </telerik:RadListBox> </asp:Panel></td>