Revert AW.UI.Combo
How does one revert a AW.UI.Combo() back to its original value assuming it fails a test?
Given:
feeCombo.onItemSelectedChanged = function(value, index) {
if ( value ) {
if( myFeesClrs[index] == "noshow" ) {
alert("ERROR: You cannot select a red item. This fee is not assessable at this location.");
// what next?
}
document.getElementById("LocFeeCode").value = myFeesKeys[index];
}
else {
prevIdx = index;
}
};
I get to the error.
Paul Tiseo
May 1,