Hi All,
<telerik:RadComboBox ID="RadComboBoxProduct" runat="server" Height="200px" Width="200px"
DropDownWidth="298px" EmptyMessage="Choose a Product" HighlightTemplatedItems="true"
EnableLoadOnDemand="true" OnItemsRequested="RadComboBoxProduct_ItemsRequested">
<HeaderTemplate>
<table style="width: 275px" cellspacing="0" cellpadding="0">
<tr>
<td style="width: 177px;">
Product Name</td>
<td style="width: 60px;">
Quantity</td>
<td style="width: 40px;">
Price</td>
</tr>
</table>
</HeaderTemplate>
<ItemTemplate>
<table style="width: 275px" cellspacing="0" cellpadding="0">
<tr>
<td style="width: 177px;">
<%# DataBinder.Eval(Container, "Text")%>
</td>
<td style="width: 60px;">
<%# DataBinder.Eval(Container, "Attributes['UnitsInStock']")%>
</td>
<td style="width: 40px;">
<%# DataBinder.Eval(Container, "Attributes['UnitPrice']")%>
</td>
</tr>
</table>
</ItemTemplate>
</telerik:RadComboBox>
This is the RadComboBox using header and item templates. Can I add textboxes and buttons to allow quick filtering of the content of the column.upon clicking the “apply filter” button, , this would likely involve an AJAX call to refresh the bound context table for the dropdown. It should look similar to the filters on the grid.
Regards
Ravi
mcamail2002@gmail.com
www.yourtechniche.com