我设计了一个日历。我必须在选择日期后打开一个对话框。我使用过滤器选项来选择日期。它工作正常。但问题是也为非活动日期打开了对话框。我只想在可用日期打开。有什么建议么?示例在链接中
jQuery("#calendar").selectable({
filter: ".available",
stop: function() {
jQuery( ".ui-selected", this ).each(function() {
result.push( this.id);
});
var width = 250;
var height = 270;
jQuery('#dialog').dialog({
modal: true,
height:height,
width:width,
resizable: false,
draggable: false,
dialogClass: "flora"
});
jQuery('.flora.ui-dialog').css({ position:"absolute",top:"596px"});
}
});