Select 1 JS BugBugWhen using javascript to get the value of a select1 or select control, the result seems to be a base64 hash instead of the value.Selection
var value = ORBEON.xforms.Document.getValue('select1');
var el = document.getElementById('js-value');
el.innerHTML = value
Xforms Value:JS Value: WorkaroundThis workaround involves a proxy xforms:input to supply the correct valueSelection
var value = ORBEON.xforms.Document.getValue('proxy');
var el = document.getElementById('js-value2');
el.innerHTML = value
Xforms Value:JS Value: