Jaroslav Steigauf
|
| Posted: 08/07/2001, 11:51 PM |
|
Hi All,
I have this programming problem :
I have first form with textbox.
I get some input into textbox.
I need open second form as new window with records in Grid and
select one of records (close second form and window) into the textbox of
first form.
Do you know help me ?
Some source code ...
regards
jaro
|
|
|
 |
Alexey Alexapolsky
|
| Posted: 08/08/2001, 2:39 AM |
|
It's more JavaScript issue.
Looks like you need to use JavaScripts ability to pass data between child
and parent windows
sort of
var w = open ('', 'windowName', 'width=300,height=300,titlebar=0');
w.document.open();
w.location.href="http://youserver.com/yourGrid.asp";
To pass data to a parent window you need to use window.parent
property of child window.
-
Alex
Jaroslav Steigauf <thskk@thskk.sk> wrote in message
news:9kqnhc$2cc$1@news.codecharge.com...
> Hi All,
>
> I have this programming problem :
>
> I have first form with textbox.
> I get some input into textbox.
> I need open second form as new window with records in Grid and
> select one of records (close second form and window) into the textbox of
> first form.
>
> Do you know help me ?
>
> Some source code ...
>
> regards
>
> jaro
>
>
>
>
>
|
|
|
 |
|