Quote:
Originally Posted by BlueMelon
The confirmation box does popup and it does hide when I click yes or no, but it wont return a value, If I take off the hide() then it does return the value...
|
It's been said twice before but please
do a better job of styling your code.
Try setting visible to false instead of using hide().
If that doesn't work you can get around that by removing the hide() code in the onReplied event and doing this instead:
PHP Code:
// other code
waitfor(this,"AnsweredDialog",3600);
temp.value = ConfirmationBox.returnvalue;
ConfirmationBox.hide();
return temp.value;
// other code