I have a radcombobox like this :
<
telerik:RadComboBox ID="rcbClinic" runat="server" Skin="Office2007" Width="300px"
AutoPostBack="true" HighlightTemplatedItems="true" DataTextField="Title" AllowCustomText="false" DataValueField="ID">
<itemtemplate>
<table style="width: 100%; text-align: left">
<tr>
<td style="width: 50px; font-size: 11px; font-family: Tahoma; color: Black">
<%
# DataBinder.Eval(Container.DataItem, "Date") %>
</td>
<td style="width: 100%; font-size: 11px; font-family: Tahoma; color: Black">
<%
# DataBinder.Eval(Container.DataItem, "Title") %>
</td>
</tr>
</table>
</itemtemplate>
</telerik:RadComboBox>
In this combo I have 2 items like this :
20/05/2009 Clinic 1
20/05/2009 Clinic 1
Each item have an ID (Guid) used like DataValueField but when I enter in my page first time, If I select second Item, SelectedIndexChanged is fire. After this If I select first item, no SelectedIndexChanged event is fired. When I check HTML, I see that value of my combobox is not my Guid but the text of my item selected. Why ????
Is it possible to fired SelectedIndexChanged on each item change even if text is the same ?
Thanks