Hi,
When using the Syncfusion <combo-box-component> in our Vue application, the @blur event handler receives undefined as its event parameter. This prevents us from accessing the native blur event or any useful event data within our handler.
Steps to Reproduce:
- Add a <combo-box-component @blur="onBlur" ... /> to a Vue template.
- In the onBlur method, log the event parameter:
onBlur(event) {
console.log('Blur event:', event); // Always logs 'undefined'
}
3. Trigger a blur on the ComboBox.
Expected Behavior:
The onBlur handler should receive a native event object or a useful payload, similar to standard Vue or HTML input blur events.
Actual Behavior:
The event parameter is always undefined.
Impact:
We are unable to access event details or the input element, which limits our ability to implement custom blur logic.
Request:
Please clarify if this is the intended behavior. If not, can the component be updated to emit a useful event object on blur? If there is a workaround to access the native event, please provide guidance.
Best Regards,
Youssef