Hello, I am using the room scheduler and in the editor window Start Time and End Time have current format is 'MM/dd/yyyy hh:mm a' which is the default format.
I wanted to change the default format to'dd/MM/yyyy hh:mm a'. Below is my code please check what I am doing wrong.
eventSettings: {
dataSource: data,
fields: {
id: 'Id',
subject: { title: 'Subject', name: 'Subject' },
location: { title: 'Location', name: 'Location' },
description: { title: 'Description', name: 'Description' },
startTime: { title: 'Start Date Time', name: 'StartTime', format:{ type:'dateTime', format:'dd/MM/yyyy hh:mm a' }},
endTime: { title: 'End Date Time', name: 'EndTime',format:{ type:'dateTime', format:'dd/MM/yyyy hh:mm a' } },
}
}
Please take a look on the bold part. please suggest how we can be able to use'dd/MM/yyyy hh:mm a'this format in the editor window (pop up).