I'm using the combobox component and I want to manually dispatch the "change" event. How is this done?
// Dispatches when user changes selection
comboType.addEventListener("change",cbListenerDialogue);
// Does not manually dispatch
comboType.dispatchEvent("change");
comboType.dispatchEvent(new Event("change"));