gpt4 book ai didi

javascript - 将类注入(inject) KendoUI Web 日历日

转载 作者:行者123 更新时间:2023-11-28 09:04:56 25 4
gpt4 key购买 nike

我想利用 KendoUI 工具提示和日历,目前我可以单独设置它们。

     <script>
$(document).ready(function() {

var today = new Date(),
events = [
+new Date(today.getFullYear(), today.getMonth(), 8),
+new Date(today.getFullYear(), today.getMonth(), 12),
+new Date(today.getFullYear(), today.getMonth(), 24),
+new Date(today.getFullYear(), today.getMonth() + 1, 6),
+new Date(today.getFullYear(), today.getMonth() + 1, 7),
+new Date(today.getFullYear(), today.getMonth() + 1, 25),
+new Date(today.getFullYear(), today.getMonth() + 1, 27),
+new Date(today.getFullYear(), today.getMonth() - 1, 3),
+new Date(today.getFullYear(), today.getMonth() - 1, 5),
+new Date(today.getFullYear(), today.getMonth() - 2, 22),
+new Date(today.getFullYear(), today.getMonth() - 2, 27)
];
// create Calendar from div HTML element
$("#calendar").kendoCalendar({
value: today,
dates: events,
month: {
// template for dates in month view
content: '# if ($.inArray(+data.date, data.dates) != -1) { #' +
'<div class="' +
'# if (data.value < 10) { #' +
"autohide-false" +
'# } else if ( data.value < 20 ) { #' +
"party" +
'# } else { #' +
"cocktail" +
'# } #' +
'">#= data.value #</div>' +
'# } else { #' +
'#= data.value #' +
'# } #'
},
footer: false
});

//set up tooltip
$(".autohide-false").kendoTooltip({
autoHide: false,
position: "top",
content: 'Hello there!'
});
});
</script>

HTML

<div id="calendar">

</div>

目前,当我单击日历小部件中的某一天时,工具提示似乎没有显示。有什么想法吗?感谢您花时间阅读本文。

最佳答案

似乎应用了工具提示,但由于我在“content:”参数中的规则,它只显示了几天。

关于javascript - 将类注入(inject) KendoUI Web 日历日,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17283688/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com