I am trying to get the combobox to load on demand and be searchable but am having problems. I have followed the demos but can get it to work.
Here is what I have.
Aspx page:
C# to bind
I get this error when I click on it.
"There was an error in the callback.s[]_$$__$$__$$_False_$$_"
Any help would be great thank you.
Matt
Here is what I have.
Aspx page:
<
telerik:RadComboBox
ID
=
"RadComboBox1"
runat
=
"server"
AutoPostBack
=
"True"
CollapseDelay
=
"0"
ExpandDelay
=
"0"
Filter
=
"StartsWith"
ItemsPerRequest
=
"10"
MarkFirstMatch
=
"true"
EnableAutomaticLoadOnDemand
=
"True"
EmptyMessage
=
"-New Menu-"
ShowMoreResultsBox
=
"True"
EnableItemCaching
=
"false"
EnableLoadOnDemand
=
"True"
EnableVirtualScrolling
=
"True"
>
<
HeaderTemplate
>
<
table
style
=
"width: 275px"
cellspacing
=
"0"
cellpadding
=
"0"
>
<
tr
>
<
td
style
=
"width: 175px; height: 13px"
>Name
</
td
>
<
td
style
=
"width: 60px; height: 13px"
>ID
</
td
>
<
td
style
=
"width: 40px; height: 13px"
>Grade
</
td
>
</
tr
>
</
table
>
</
HeaderTemplate
>
<
ItemTemplate
>
<
table
style
=
"width: 275px"
cellspacing
=
"0"
cellpadding
=
"0"
>
<
tr
>
<
td
style
=
"width: 175px;"
>
<%# DataBinder.Eval(Container.DataItem, "FullName")%>
</
td
>
<
td
style
=
"width: 60px;"
>
<%# DataBinder.Eval(Container.DataItem, "StudentID")%>
</
td
>
<
td
style
=
"width: 40px;"
>
<%# DataBinder.Eval(Container.DataItem, "DisplayGrade")%>
</
td
>
</
tr
>
</
table
>
</
ItemTemplate
>
</
telerik:RadComboBox
>
C# to bind
RadComboBox1.DataTextField =
"FullName"
;
RadComboBox1.DataValueField =
"StudentID"
;
RadComboBox1.DataSource = dt_students;
RadComboBox1.DataBind();
I get this error when I click on it.
"There was an error in the callback.s[]_$$__$$__$$_False_$$_"
Any help would be great thank you.
Matt