i have a Combobox with this item template:
ie something like :
'Format Code Block'
<ItemTemplate>
<table>
<tr>
<td><%# DataBinder.Eval(Container, "Attributes['contact']")%></td>
<td>(<%# DataBinder.Eval(Container, "Attributes['city']")%>)</td>
</tr>
</table>
</ItemTemplate>
is it possible to apply sorting on contact or city in code behind?
ie something like :
1- RadComboBox1.Items.Sort('contact');
2-RadComboBox1.Items.Sort('city');
so the 1st sorts the combobox according to contact whlie the 2nd sorts according to city?