It has been observed that Portal does not show exact date and time while adding/display Notes and Timeline.
Sometimes it is not clear what exactly was the date/time when the notes/activites were added.
For Notes:
$('body').mouseover(function () {
$("abbr").each(function () {
var data = $(this).attr("title");
$(this).html(data);
});
});
For Timeline:
$('body').mouseover(function () {
$("div").each(function () {
var data = $(this).attr("title");
$(this).html(data);
});
});
Sometimes it is not clear what exactly was the date/time when the notes/activites were added.
Out Of Box Behavior of Notes Date and Time:
Out Of Box Behavior of Activities Date and Time Added on Timeline:
JavaScript Code to show exact date and time:
$('body').mouseover(function () {
$("abbr").each(function () {
var data = $(this).attr("title");
$(this).html(data);
});
});
For Timeline:
$('body').mouseover(function () {
$("div").each(function () {
var data = $(this).attr("title");
$(this).html(data);
});
});
No comments:
Post a Comment