Thank you. Now I want to change the style of the embedded textarea. I added the following CSS style both in the global style.css and in CSS file of the component that contains the scheduler.
.scheduler_time_reporting_board-place-editor {
border: 1px solid red !important;
}
onAfterEventEditRender: (args) => {
args.element.classList.add('scheduler_time_reporting_board-place-editor');
},
However it seems not work. Am I doing something wrong?