Tuesday 6 March 2018

Show exact Date and Time in CRM Portal Notes and Timeline

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.

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:

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);

        });


    });


No comments:

Post a Comment

Blogger Widgets