Hide 00:00 time from items in calendar report

chadk1
Kilo Contributor

Hi,

I have a calendar report running on my dashboard which reports the 'Due Date' field of requests. 

How can I hide the time from these calendar items? The field is simply a 'Date' type field and has no time associated with it, but in the report it lists 00:00. I am unable to find a way to remove this via the dictionary attributes feature either.

Even if I can't hide it, can I move it to the end of the tool tip? It just looks very ugly right now and hides important information, defeating the point of the report in the first place.

attached is an example of an item with the 00:00 time 

Thank you,

9 REPLIES 9

didnt work for me...any suggestions?

This works like a champ. 

Erik Lazaroff
Kilo Contributor

This is pretty old but I thought I would give the answer...

 

You need to clone the widget as stated and add the following to the css code:

.fc-time{

display:none;

}

It seems the events use <span class="fc-time"> as the first part of the elements

Community Alums
Not applicable

I created a content block like below and added this widget to my dashboard where I had my calendar report.

<?xml version="1.0" encoding="utf-8" ?>
<j:jelly trim="false" xmlns:j="jelly:core" xmlns:g="glide" xmlns:j2="null" xmlns:g2="null">

<style>
.fc-time {
    display: none;
}
</style>

</j:jelly>

 

It looks like this now,

find_real_file.png

Community Alums
Not applicable