I need to close the modal dialog with return a value in a same function
I cannot write code as follow,because when a returning a value, next line never be excuted,
function butOK_OnClick() {
return "OK";
window.close();
}
so is this the right way ?
function butOK_OnClick() {
window.returnvalue = "OK";
window.close();
}
or what is the best way to do this ?