<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<ig:WebDropDown ID="dd1" runat="server" AutoPostBackFlags-ValueChanged="On" OnValueChanged="OnValueChanged">
</ig:WebDropDown>
<asp:Label ID="label1" runat="server"></asp:Label>
</ContentTemplate>
</asp:UpdatePanel>
protected void OnValueChanged(object s, EventArgs e){
label1.Text = DateTime.Now.ToString();
}
After the 2nd postback, the text editor in the WebDropDown do not receive any input from user (or sometimes still receive input but do not fire any ValueChanged event), until you move your focus out then in. What we expect is to continuously monitor the user input, and give some related feedback
Hello bitsbird,
I'm just checking if you have resolved your issue.
Hi bitsbird,
I’m not sure I understand your issue. Can you please explain in details what you are trying to achieve?
I am attaching a small sample, replicating your scenario. The ValueChanged event is fired on every change in the dropdown, including when user types in the input. And the value of the label is updated correctly.
Let me know if this helps.
Is there a way to fire the valuechanged event only after the combo control lost focus ?