Jquery datepicker popup not closing on select date in IE8

前端 未结 10 1354
逝去的感伤
逝去的感伤 2020-12-15 05:46

I\'ve got a web form with a start date field. I\'ve tied a jquery datepicker to the txt field. Now when I choose a date in FF, the selected date is populated in the text box

10条回答
  •  一个人的身影
    2020-12-15 06:22

    The fix...

    onSelect: function() {}

    ..does not appear to work if the problem is with a CustomValidator that relies on a servewr side event handler to validate input.

    There are a couple of other fixes mentioned here...

    http://dev.jqueryui.com/ticket/4071

    The problem is down to IE's event handling differing from other browsers and the client side validation code supplied by ASP Net not reacting gracefully to a situation not contemplated by it's authors.

提交回复
热议问题