Hello Benjamim,
Greetings from Syncfusion support.
Yes, you can use the open event in the ComboBox control to update the popup position using the popup object from the arguments. Kindly refer to the following code snippet.
let games: ComboBox = new ComboBox({
dataSource: data,
fields: { text: 'Name', value: 'Code' },
placeholder: 'Select countries',
popupWidth: '200px',
open: function (args) {
args.popup.position = { X: 'right', Y: 'bottom' };
}
});
games.appendTo('#local'); |
In the above code, we have positioned the popup right side. We have attached an example for your reference, kindly refer to the following location for the sample
Let us know if you need any further assistance on this.
Regards,
Prince