Select Item / Drop Down Menu Duplicate

Hi,

It might not be fired event. For now, can you try the following JS code in InjectJSscript activity?

"function(e,v){
    e.selectedIndex=v;
    e.onchange();
}"

OR

"function(e,v){
    e.selectedIndex=v;
    var evt = new Event('change');
    e.dispatchEvent(evt);
}"

Regards,

1 Like