Hi, I'm facing an issue like updating adaptive form field's values from
Javascript is not retaining/updating in the form, whereas I can see the
updated values in the fields.So, the issue is that the form field is
still showing as empty when submitting, although it has been updated
from js. For textbox field, I able to overcome this issue like focusing
it when updating value from js as below.
$("#selector").focus().val("somevalue");But,for drop down I'm not able
to. Help me on this if anyone has ...