or
<telerik:RadComboBox ID="ComboBox1" runat="server" Filter="StartsWith" Width="500" HighlightTemplatedItems="true" Height="300" ShowMoreResultsBox="True" SortCaseSensitive="False" ExpandAnimation-Type="OutQuart" AutoPostBack="true" onselectedindexchanged="ComboBox1_SelectedIndexChanged1"> <HeaderTemplate> <table style="width: 400px" cellspacing="0" cellpadding="0"> <tr> <td style="width: 300px;"> Name </td> <td style="width: 60px;"> Number </td> </tr> </table> </HeaderTemplate> <ItemTemplate> <table style="width: 400px" cellspacing="0" cellpadding="0"> <tr> <td style="width: 300px;"> <%# Eval("Name")%> </td> <td style="width: 60px;"> <%# Eval("Id")%> </td> </tr> </table> </ItemTemplate> </telerik:RadComboBox>protected void ComboBox1_SelectedIndexChanged1(object sender, RadComboBoxSelectedIndexChangedEventArgs e) { }Compiler Error Message: CS1061: 'ASP.builderform_aspx' does not contain a definition for
'ComboBox1_SelectedIndexChanged1' and no extension method 'ComboBox1_SelectedIndexChanged1'
accepting a first argument of type
'ASP.builderform_aspx' could be found (are you missing a using directive or an assembly reference?)Source Error:Line 26: VerticalPadding="0px" />Line 27: </asp:TreeView>Line 28: <telerik:RadComboBox ID="ComboBox1" runat="server" Filter="StartsWith" Width="500"Line 29: HighlightTemplatedItems="true" Height="300" ShowMoreResultsBox="True" SortCaseSensitive="False"Line 30: ExpandAnimation-Type="OutQuart" AutoPostBack="true"
Find enclosed an example website where the autopostback of a RadComboBox isn’t fired anymore after a couple of times. Most of the time it works, but when you follow this scenario it stops working:
Select items 1, 2 and 3 of the first ComboBox and wait for postback
Deselect items 2 and 3 and wait for postback
Select items 2 and 3 again => No postback anymore
Could anyone explain me why this is, if it can be solved by us, or if it is a bug ?
We’re using Telerik version 2011.2.915.40
Link to demo project:
http://www.gildebt.nl/ComboBox.rar
I have an nHibernate object returning 225 objects, when I bind it nothing is displayed. EmployeeSupervisor.cspublic class EmployeeSupervisor { public virtual int EmployeeId { get; set; } public virtual string Employee { get; set; } public virtual int ManagerId { get; set; } public virtual string Manager { get; set; } public EmployeeSupervisor() { } }OrgChart.aspx<telerik:RadOrgChart ID="RadOrgChart1" runat="server" DataFieldID="EmployeeId" DataFieldParentID="ManagerId" DataTextField="Employee" DisableDefaultImage="False" MaxDataBindDepth="5"> </telerik:RadOrgChart> OrgChart.aspx.csUserDAO dao = new UserDAO(); List<EmployeeSupervisor> coList = dao.GetOrgChart(); RadOrgChart1.DataSource = coList; RadOrgChart1.DataBind();thank you in advance. Jeff