jQuery ui - datepicker阻止刷新onSelect

时间:2011-05-19 09:10:53

标签: jquery-ui datepicker refresh qtip

我正在使用jQuery ui Datepicker来显示一个完整的“特殊日期”(带颜色)的年度内联日历。 enter image description here 这是为了允许用户通过选择范围和其他一些细节来批量处理特殊日期。

$('#calendar').datepicker({
  ...
  , onSelect: function (selectedDate, inst) {
      $('.date_pick').toggleClass('focused');
      if ($('.date_pick.end').hasClass('focused')) {
        $('.date_pick.end').val('');
      }
      # inst.preventDefault() ? <- not a function
      # inst.stopPropagation() ? <- not a function
      # return (false) ? <- calendar refreshes anyway
    }
  ...
});

我也在使用qtip来显示每个日期的详细信息

我的问题是当我点击日历时,它完全重新加载,所以我放松了我的qtips。

我不想在qtip中使用live()因为我不喜欢这种行为。

我也更喜欢每次点击它时都不会刷新日历(但这似乎不太可能)但我可能再也无法突出显示我的选择了。

你对我的问题有什么建议吗?

5 个答案:

答案 0 :(得分:24)

我遇到了类似的问题。我在datepicker的底部添加了自定义按钮(使用$(id).append),但是当我选择日期时,datepicker会刷新并销毁它们。

这是jquery-ui库中datepicker的日期选择函数:

_selectDate: function(id, dateStr) {
  ...
    if (onSelect)
        onSelect.apply((inst.input ? inst.input[0] : null), [dateStr, inst]);
  ...
    if (inst.inline)
        this._updateDatepicker(inst);
  ...
},

如您所见,函数首先调用onSelect事件,然后调用_updateDatepicker(这是重绘表单的内容),如果inst.inline为true。

这是我的解决方法,以防止在保持选择功能的同时刷新表单:

$("#cal_id").datepicker({
  onSelect: function(date, inst){

    //This is the important line.
    //Setting this to false prevents the redraw.
    inst.inline = false;

    //The remainder of the function simply preserves the 
    //highlighting functionality without completely redrawing.

    //This removes any existing selection styling.
    $(".ui-datepicker-calendar .ui-datepicker-current-day").removeClass("ui-datepicker-current-day").children().removeClass("ui-state-active");

    //This finds the selected link and styles it accordingly.
    //You can probably change the selectors, depending on your layout.
    $(".ui-datepicker-calendar TBODY A").each(function(){
      if ($(this).text() == inst.selectedDay) {
        $(this).addClass("ui-state-active");
        $(this).parent().addClass("ui-datepicker-current-day");
      }
    });
  }
});

答案 1 :(得分:0)

我有几乎相同的问题,就像一些other people,我有某种解决方案......但这不公平:

$('#calendar').datepicker({
...,
onSelect: function (selectedDate, inst) 
{
  myFunction(selectedDate, inst);
}
});
function myFunction(selectedDate, inst)
{

  $('.date_pick').toggleClass('focused');
  if ($('.date_pick.end').hasClass('focused')) {
    $('.date_pick.end').val('');
  }
  inst.preventDefault(); # aa; works too, but writing aa; is going too far xD
}

这不是完美的,但是有效......我会努力让它运作得很好,直到那时......

编辑:解决了添加:

<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"/>

答案 2 :(得分:0)

在onselect中将inst.inline设置为false将不起作用。 而是尝试像

这样的东西
onSelect: function() {
    $(this).data('datepicker').inline = true;                               
},
onClose: function() {
    $(this).data('datepicker').inline = false;
}

答案 3 :(得分:0)

如果您只想选择一天,那么您必须在JQuery中指定月份和年份:

$(".ui-datepicker-calendar TBODY [data-month='"+inst.selectedMonth+"'][data-year='"+inst.selectedYear+"'] A").each(function(){

答案 4 :(得分:0)

如果页面上有一些日期选择器 Yozomiri 示例将失败。你应该这样做:

        onSelect: function(date, inst){
            //This is the important line.
            //Setting this to false prevents the redraw.
            inst.inline = false;

            //The remainder of the function simply preserves the 
            //highlighting functionality without completely redrawing.

            //This removes any existing selection styling.
            $(this).find(".ui-datepicker-calendar .ui-datepicker-current-day").removeClass("ui-datepicker-current-day").children().removeClass("ui-state-active");

            //This finds the selected link and styles it accordingly.
            //You can probably change the selectors, depending on your layout.
            $(this).find(".ui-datepicker-calendar TBODY td").each(function(){
              if ( $(this).find('a').text() == inst.selectedDay && $(this).data('month') == inst.selectedMonth ) {
                $(this).find('a').addClass("ui-state-active");
                $(this).addClass("ui-datepicker-current-day");
              }
            });
        }

https://jsfiddle.net/g2bgbdne/3/