Here is the Peace of code which I am using…
<telerik:RadComboBox ID="rcRFQRef" runat="server" Height="190px" Width="153px" HighlightTemplatedItems="true" MarkFirstMatch="true" EnableLoadOnDemand="true" DataTextField="RFQNo" DataValueField="RFQNo" DropDownWidth="420" OnPreRender="rcRFQRef_PreRender" CssClass="RadComboBox_Default" AutoPostBack="True" OnSelectedIndexChanged="rcRFQRef_SelectedIndexChanged" onitemcreated="rcRFQRef_ItemCreated" onitemdatabound="rcRFQRef_ItemDataBound">
<HeaderTemplate>
<table style="width: 200px" cellspacing="0" cellpadding="0">
<tr>
<td style="width: 150px;"> Agent Name</td>
<td style="width: 150px;"> RFQ No</td>
</tr>
</table>
</HeaderTemplate>
<CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation>
<ItemTemplate>
<table style="width: 350px" cellspacing="0" cellpadding="0">
<tr>
<td style="width: 150px;">
<div><%# DataBinder.Eval(Container.DataItem, "Agent_Name")%>
</div>
</td>
<td style="width: 150px;">
<div>
<%# DataBinder.Eval(Container.DataItem, "RFQNo")%>
</div></td>
</tr>
</table>
</ItemTemplate>
</telerik:RadComboBox>
In the “rcRFQRef_SelectedIndexChanged” Event I want to capture the AgentName along with RFQ NO.
Please help me in this regards…
Note:- I don’t want to cahange any Value/Text Field property.
Waiting for response…
Regards,Ranganath.