Hello,I am trying to get the previous value of a drop down list when I
press cancel button of a message box. In order to do that, I placed the
next code in aChange event:var vTest = xfa.host.messageBox("If you
change the option...","Change",1,1);if (vTest == "1"){
xfa.host.resetData(); //If I press Accept button, all form data is
reset}else{ Form.Page1.dropdownlist.rawValue = xfa.event.prevText; //I
am trying to re-assign the previous value to the drop down list but I am
not able to do it. I am ...