日期:2014-05-17 浏览次数:20443 次
<telerik:RadComboBox ID="RadComboBoxProduct" runat="server" Height="200px" Width="200px" DropDownWidth="298px" EmptyMessage="Choose a Product" HighlightTemplatedItems="true" EnableLoadOnDemand="true" Filter="StartsWith" 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>