Hello,
I was wondering if it is possible to have a multicolumn RadComboBox being loaded using AutomaticLoadOnDemand and have the items filtered in the RadComboBox based on what the users type, but not limit the search to be against only the DataValueField of the RadComboBox. I'd like the below RadComboBox to be filtered by CUST_ID, COMPANY_NAME, CONTACT_NAME and ADDRESS when the user types anything in the RadComboBox's text area.
Here is my RadComboBox that I am interested in adding this functionality to.
Please let me know if this is possible.
I was wondering if it is possible to have a multicolumn RadComboBox being loaded using AutomaticLoadOnDemand and have the items filtered in the RadComboBox based on what the users type, but not limit the search to be against only the DataValueField of the RadComboBox. I'd like the below RadComboBox to be filtered by CUST_ID, COMPANY_NAME, CONTACT_NAME and ADDRESS when the user types anything in the RadComboBox's text area.
Here is my RadComboBox that I am interested in adding this functionality to.
Please let me know if this is possible.
<
telerik:RadComboBox
ID
=
"rcbCust"
runat
=
"server"
CausesValidation
=
"false"
EnableAutomaticLoadOnDemand
=
"true"
Width
=
"550px"
AutoPostBack
=
"true"
DataTextField
=
"COMPANY_NAME"
DataSourceID
=
"ObjectDataSource1"
OnSelectedIndexChanged
=
"rcbCust_SelectedIndexChanged"
AllowCustomText
=
"true"
EmptyMessage
=
"Select a customer to enter an order for "
EnableAjaxSkinRendering
=
"true"
DataValueField
=
"CUST_ID"
>
<
HeaderTemplate
>
<
table
width
=
"100%"
>
<
tr
>
<
td
style
=
"width: 115px"
align
=
"center"
>
Customer ID
</
td
>
<
td
style
=
"width: 115px"
align
=
"center"
>
Company Name
</
td
>
<
td
style
=
"width: 115px"
align
=
"center"
>
Contact Name
</
td
>
<
td
style
=
"width: 120px"
align
=
"center"
>
Address
</
td
>
</
tr
>
</
table
>
</
HeaderTemplate
>
<
ItemTemplate
>
<
table
width
=
"100%"
>
<
tr
>
<
td
style
=
"width: 115px"
align
=
"center"
>
<%# DataBinder.Eval(Container.DataItem, "CUST_ID") %>
</
td
>
<
td
style
=
"width: 115px"
align
=
"center"
>
<%# DataBinder.Eval(Container.DataItem, "COMPANY_NAME") %>
</
td
>
<
td
style
=
"width: 115px"
align
=
"center"
>
<%# DataBinder.Eval(Container.DataItem, "CONTACT_NAME") %>
</
td
>
<
td
style
=
"width: 120px"
align
=
"center"
>
<%# DataBinder.Eval(Container.DataItem, "ADDRESS") %>
</
td
>
</
tr
>
</
table
>
</
ItemTemplate
>
</
telerik:RadComboBox
>