Hi
I have and issue regarding the scrollbar position. As you can see in the code below i have the radtreeview inside the radlistbox and il would like that when i click on the node, the scrollbar scrolls to the selected node position.
I have and issue regarding the scrollbar position. As you can see in the code below i have the radtreeview inside the radlistbox and il would like that when i click on the node, the scrollbar scrolls to the selected node position.
<asp:Panel ID="Panel2" runat="server"> <telerik:RadListBox ID="RadListBox1" runat="server" Height="200" Width="250" AllowTransfer="true" ButtonSettings-Position="Right" ButtonSettings-TransferButtons="All" TransferMode="Copy" SelectionMode="Multiple" TransferToID="rlbDealers" AutoPostBackOnTransfer="true" CausesValidation="false" OnTransferred="rlbListAvailable_Transferred"> <ItemTemplate> <div> <telerik:RadTreeView ID="rtvDealersAvailable" runat="server" OnLoad="rtvDealersAvailable_Load" MultipleSelect="true" OnClientNodeClicked="selectFatherAndChildNodes"> </telerik:RadTreeView> </div> </ItemTemplate> <Items> <telerik:RadListBoxItem /> </Items> </telerik:RadListBox> <telerik:RadListBox ID="RadListBox2" runat="server" SelectionMode="Multiple" Height="200" Width="250"> </telerik:RadListBox></asp:Panel>