Give the Event Title custom colours within the Calendar Widget

Former Member
Former Member

The aim is to have 4 types/ categories of events we would like to add to the calendar, and we would like to have each categories 'event title' show up as a specific colour when displayed within the calendar widget. What would be the feasibility/ approach in solving this request?

Parents Reply
  • Alex I would be 'wary' when trying this as from memory I don't think that calendar events extended attributes fully worked in some older versions, I am sure for Verint connect we had to have a workaround when it was running v11

    but they are quite simple to set/get in widgets once you know the syntax

    when saving

    #set($options = "%{}")
    $options.Add("_ExtendedAttributes_Colour", "red")


    when retrieving

    #set ($eventColour = false)
    #set ($eventColour = $event.ExtendedAttributes.Get("Colour").Value)


Children