<telerik:RadMultiPage ID="rdmpPersonal" runat="server" SelectedIndex="0"> <telerik:RadPageView ID="rdpgSalary" runat="server"> <telerik:RadAjaxPanel ID="rdpnlSalary" runat="server"> <telerik:RadPanelBar runat="server" ID="rdpbSalary" ExpandMode="FullExpandedItem" Skin="Vista" EnableEmbeddedSkins="false" Width="550px"> <Items> <telerik:RadPanelItem Expanded="true" Text="Employee Salary Information" runat="server" Selected="true"> <Items> <telerik:RadPanelItem Value="SalaryInformation" runat="server"> <ItemTemplate> <div class="text" style="background-color: #edf9fe"> <ul class="formList" id="salaryinfo"> <li> <asp:Label Width="150px" runat="server" ID="lblSalaryPayRate" AssociatedControlID="rdbtnlstPayRate">What is the Pay Rate?</asp:Label> <asp:RadioButtonList ID="rdbtnlstPayRate" runat="server" AutoPostBack="true" RepeatDirection="Horizontal" OnSelectedIndexChanged="rdbtnlstPayRate_SelectedIndexChanged" Style="width: 155px" ValidationGroup="salaryValidation"> <asp:ListItem Value="S">Salary</asp:ListItem> <asp:ListItem Value="H">Hourly</asp:ListItem> </asp:RadioButtonList> <asp:RequiredFieldValidator ID="rfvsalaryTypeID" runat="server" ControlToValidate="rdbtnlstPayRate" ErrorMessage="Please Select One Pay Rate" ValidationGroup="salaryValidation"></asp:RequiredFieldValidator> </li> </div> </ItemTemplate> </telerik:RadPanelItem> </Items> </telerik:RadPanelItem> </Items> </telerik:RadPanelBar> </telerik:RadAjaxPanel> </telerik:RadPageView> </telerik:RadMultiPage>protected void rdbtnlstPayRate_SelectedIndexChanged(object sender, EventArgs e) {RadioButton rdbtnlstPayRate = (RadioButton)rdpbSalary.FindItemByValue("SalaryInformation").FindControl("rdbtnlstPayRate"); Unable to access rdbtnlstPayRate .SelectedValue can some one tell where I went wrong }I have a Radlistbox that is taller than the table that contains it. I was tasked with creating up and down buttons that the user can use to scroll the Radlistbox up and down. I created that and I able to scroll up and down a div with no issue however when I try to do this with the Telerik RadListbox it does not work, using "getElementByID("MyListBox"), that does not work.
I researched the Radlistbox and found that it includes a div so what I did was look in the source code ("view source") of the page and found the name of that div and then tried using that exact name to scroll but nothing happens there. It appears that the javascript finds the control because it does not error but it is simply not moving that but the same code works good for a normal div.
Does anyone know how to solve this?
In the source code I see that Radlistbox uses 3 different stylesheets that are all online. I was able to look at one of them last night and wondering if one of the stylesheets for the Radlistbox has some kind of setting that keeps the Radlistbox from being able to be manually scrolled by using a button.
so the question I have is how can you use buttons (ex: UpButton and DownButton) to scroll a RadListBox?
I apologize that I do not have the exact javascript that I'm using here but when I get home later I can update this post with that.
thanks
MC

applicationValueTotal += Double.Parse(dataItem["ApplicationValue"].Text);...GridFooterItem footerItem = (GridFooterItem)e.Item; footerItem["ApplicationValue"].Text = "R " + applicationValueTotal;<%@ Page Language="VB" AutoEventWireup="false" CodeFile="datepicker.aspx.vb" Inherits="tests_datepicker" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head runat="server"> <title></title></head><body> <form id="form1" runat="server"> <div> <telerik:RadScriptManager runat="server" ID="rcm"></telerik:RadScriptManager> <telerik:RadDatePicker runat="server" ID="RadDatePicker1" ClientIDMode="Static" /> <telerik:RadDatePicker runat="server" ID="RadDatePicker2" ClientIDMode="Static" /> </div> </form></body></html>