#7219 closed bug (notabug)
DatePicker on iExplorer
Reported by: | jeffcantin1979 | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | 1.9.0 |
Component: | ui.datepicker | Version: | 1.8.11 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
I am using the latest version of the datePicker script available on http://marcgrabanski.com/articles/jquery-ui-datepicker (I can't find any version number in that script)
with jQuery v 1.4.4, and even if I added an empty function on the onSelect event, the calendar still doesn't close when I select a date. I even tried in an empty project. I've noticed that clicking on a date add a # character at the end of the URL. But that's about it. The calendar doesn't close, don't fire the onSelect event, and don't return any date in the input field. In Firefox, everything works perfectly.
Any idea? Thank you!
Change History (4)
comment:1 Changed 12 years ago by
Resolution: | → invalid |
---|---|
Status: | new → closed |
comment:2 Changed 12 years ago by
@{
ViewBag.Title = "Index"; Layout = "~/Views/Shared/_Layout.cshtml";
}
<script type="text/javascript" src="http://localhost:59591/Scripts/jquery.ui.datepicker.js"></script> <script src="http://localhost:59591/Scripts/jquery-ui.js" type="text/javascript"></script>
<script type="text/javascript">
$(function () {
$('#txtDateDebut').datepicker({ onSelect: function () { alert('allo'); } });
});
</script>
<h2>Index</h2>
@Html.TextBox("txtDateDebut","")
comment:3 Changed 12 years ago by
comment:4 Changed 12 years ago by
Sorry for misunderstanding. I just copied my project, and it work on jsfiddle, but not in my app :-/
Please provide a reduced test case using the latest version of the plugin.