pen one
08/07/2024, 3:02 PMcalendarEvent.setValue('starttime', '0900');
calendarEvent.setValue('starttime', '9:00');
calendarEvent.setValue('starttime', '900');
but none seem to work.erictgrubaugh
08/07/2024, 3:45 PMstarttime
is a Time field, which requires a Date
instance for the value. Create a Date
instance with the time of day you want, and use thatpen one
08/07/2024, 3:48 PM