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

Return arguments issue

1 Answer 49 Views
Window
This is a migrated thread and some comments may be shown as answers.
nagendra d
Top achievements
Rank 1
nagendra d asked on 23 Nov 2009, 11:56 AM
Hi,

   I need to return more than one value from the child form to the parent form using rad window control.
I need how to assign the values in the child page while closing the child form at the client side. I achived already getting one value return from the child page. help me out in returning multiple values from the child form.

Thanks,
Nagendra

1 Answer, 1 is accepted

Sort by
0
Accepted
Shinu
Top achievements
Rank 2
answered on 23 Nov 2009, 12:14 PM
Hi Nagendra,

If you want to return multiple values from the child form, then you can create the argument as a new object and assign multiple values to it.

var arg = new Object();
arg.Value1 = "My Value1";
arg.Value2 = "My Value2";


Checkout the following code library for more details on this:
Returning multiple Values From a Dialog

-Shinu.
Tags
Window
Asked by
nagendra d
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or