Good Evening All.I am trying to combine 3 different columns into the title for the calendar.-job_number
-client
-headingI have had a look at the documents and see that it is a row rendered item that i need to add.
What is “Calendar Title”? If you meant the page title (at the top of the page), it should not be based on a row (an event of the calendar report). Did you mean the event title for each events in the report? If so, you may use the Event_Adding server event.
Hello all.It is the event title.I have 3 fields in the database:
Heading,
Category,
Severity.I want all 3 items combined into the event title on the calendar view.
Afternoon All.I have not been able to get this to work.my code is
// Row Updating event
function Row_Updating(array $oldRow, array &$newRow): ?bool
{
// Enter your code here
// To cancel, set return value to false
// To skip for grid insert/update, set return value to null
$newRow["Title"] = $newRow["client"] . " " . $newRow["tax_type"] . " " . $newRow["heading"];
return true;
}
maybe i have had this wrong.I have a table that has:
-Client
-job
-headingi am creating a calendar report and want the “event name / Title” to be displayed as “client - Job - Heading”