我有以下日历和工具提示:
$("#achCalendar").kendoCalendar({
dates: events,
navigate: MonthNavigate,
change: DateChange,
value: cur,
month: {
// template for dates in month view
content: "# if ($.inArray(data.date.formatMMDDYYYY(), events) != -1) { data.title('check check'); #" +
"<div class='" +
"# if (data.date < currentDate) { #" +
"past" +
"# } else if (data.date.formatMMDDYYYY() == currentDate.formatMMDDYYYY()) { #" +
"current" +
"# } else { #" +
"future" +
"# } #" +
"'>#= data.value #</div>" +
"# } else { #" +
"#= data.value #" +
"# } #"
},
footer: "Today - #=kendo.toString(data, 'd') #"
});
var tooltip = $("#achCalendar").kendoTooltip({
filter: "td .k-link",
width: 120,
position: "top",
content: function(e) {
var target = e.target; // the element for which the tooltip is shown
return target.data("title"); // set the element text as content of the tooltip
}
}).data("kendoTooltip");
我想做的是每天添加一些将出现在工具提示中的自定义文本。我正在考虑每天更新标题,但这似乎不起作用,至少我尝试这样做的方式是这样。
有任何想法吗?提前致谢。