I use Table template in font of RadCombobox.
How can I get Product Name & Product Price which Product ID value had been input.
Thank
s
How can I get Product Name & Product Price which Product ID value had been input.
Thank
<telerik:RadComboBox ID="cboProducts" runat="server" Skin="Windows7" Font-Names ="Tahoma" Font-Size ="13px" Width="500px" Height="150px" CollapseDelay="0" EmptyMessage="-- Select --" CausesValidation="false" EnableLoadOnDemand="true" EnableItemCaching="true" ExpandDelay="0" MarkFirstMatch="true" HighlightTemplatedItems="true" ShowMoreResultsBox="true" EnableVirtualScrolling="true" ShowToggleImage="false"><ExpandAnimation Duration="0" Type="None" /><CollapseAnimation Duration="0" Type="None" /> <HeaderTemplate> <table style="width: 500px" cellspacing="0" cellpadding="0"> <tr> <td style="width: 100px;"> Product ID</td> <td style="width: 330px;"> Product Name</td> <td style="width: 70px;"> Product Price</td> </tr> </table></HeaderTemplate><ItemTemplate> <table style="width: 465px" cellspacing="0" cellpadding="0"> <tr><td style="width: 90px;"><%# DataBinder.Eval(Container, "ProductID")%></td> <td style="width: 300px;"><%# DataBinder.Eval(Container, "Attributes['ProductName']")%></td><td style="width: 70px;" align="right"> <%# DataBinder.Eval(Container, "Attributes['ProductPrice']")%></td> </tr> </table></ItemTemplate></telerik:RadComboBox>