Hi jose,
Syncfusion Greetings.
We prepared a sample in the scheduler's popupOpen event to add change event to drop down list. Please refer below sample link.
let drowDownList: DropDownList = new DropDownList({
dataSource: [
{ text: 'Public Event', value: 'public-event' },
{ text: 'Maintenance', value: 'maintenance' },
{ text: 'Commercial Event', value: 'commercial-event' },
{ text: 'Family Event', value: 'family-event' }
],
fields: { text: 'text', value: 'value' },
value: (args.data as { [key: string]: Object }).EventType as string,
floatLabelType: 'Always', placeholder: 'Event Type',
change:onChange
});
function onChange(args){
// You can add your code here.
alert("Change Event Called");
console.log(args);
}
Regards,
M.Vinitha devi