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...
|
You can do:
PHP Code:
// snip
while (!waitfor(this.name, "AnsweredDialog"));
return params[0];
}
function onReplied(obj) {
ConfirmationBox.hide();
this.trigger("AnsweredDialog", obj.text == "Yes"? true : false);
}