Hello,
When i have AutoPostback = true the selectedIndex chnaged event is fired correctly. But i do not want to have postback. But when i remove (AutoPostback = true) event do not fires. Could you please help me how both to hire this event and not to have a postback?
Thanks for your time.
Here are the sode examples:
When i have AutoPostback = true the selectedIndex chnaged event is fired correctly. But i do not want to have postback. But when i remove (AutoPostback = true) event do not fires. Could you please help me how both to hire this event and not to have a postback?
Thanks for your time.
Here are the sode examples:
<radAjaxC:RadComboBox ID="radComboAdressLine1" runat="server" Width="248px"
AllowCustomText="True" ShowToggleImage="false" ShowMoreResultsBox="false" Skin="Outlook"
EnableLoadOnDemand="True" MarkFirstMatch="True"
OnItemsRequested="radComboAdressLine1_ItemsRequested"
AutoPostBack = "true"
onselectedindexchanged="radComboAdressLine1_SelectedIndexChanged"
CausesValidation="false"
MaxLength="34"
>
protected
void radComboAdressLine1_SelectedIndexChanged(object o, RadComboBoxSelectedIndexChangedEventArgs e){
....
}