Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
110
WebDataChooser does not postback when I tab off control
posted

I have an Infragistics.WebUI.WebSchedule.WebDateChooser on a form and I handle the ValueChanged event as follows ...

this.calendar1.ValueChanged += new Infragistics.WebUI.WebSchedule.WebDateChooser.ValueChangedEventHandler(this.sp1);

private void sp1(object sender, Infragistics.WebUI.WebSchedule.WebDateChooser.WebDateChooserEventArgs e)

{
        this.txtBox1.Text = SPPConvert.ToString(this.calendar1.Value);   
}

This simple method populates a textbox with contents of the WebDataChooser and fires when I select the date using the dropdown OR when I manually enter a date and press enter. It does not fire if I manually enter a date and simply tab off the control. How can I get it to do this?

 Any help here is greatly appreciated - I'm stuck!

Thanks,

Karen.

Parents Reply Children
No Data