This is a migrated thread and some comments may be shown as answers.

radwindow open

1 Answer 41 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
geetha priya
Top achievements
Rank 1
geetha priya asked on 28 May 2010, 11:49 AM
Hi!

how to open a radwindow from radconfirmation's ok button click..
plz help me....

thanks in advance...

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 28 May 2010, 02:36 PM
Hello,

I hope the following code example will shed some light in achieving the functionality.

JavaScript:
 
<script type="text/javascript"
    function ConfirmtMe() { 
        radconfirm("Hai, this is my confirm..!!!", confirmCallBackFn); 
    } 
    function confirmCallBackFn(arg) { 
        if (arg) { 
            radopen('http://www.google.com'null); 
        } 
    } 
</script> 


-Shinu.
Tags
General Discussions
Asked by
geetha priya
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or