Michael Rachow
|
| Posted: 04/04/2002, 4:00 AM |
|
Hi,
I have a grid with one of the columns being an URL field.
After the user clicks one of theses records and
before the page is closed I would like to set a session variable
based on a column value of that selected record.
Is there any event slot, where variables point to the selected record?
Thanks in advance
Michael
|
|
|
 |
Alexey Alexapolsky
|
| Posted: 04/05/2002, 12:57 AM |
|
Make this URL point to dummy CC page,
add record field to Field Properties/Output tab,
and in dummy page/open event your code should be like this :
session("some_var") = GetParam("FieldName")
--
Alex
CodeCharge Developer
"Michael Rachow" <mrachow@BeraCom.de> wrote in message
news:a8hf83$ap1$1@news.codecharge.com...
> Hi,
>
> I have a grid with one of the columns being an URL field.
> After the user clicks one of theses records and
> before the page is closed I would like to set a session variable
> based on a column value of that selected record.
> Is there any event slot, where variables point to the selected record?
>
> Thanks in advance
> Michael
>
>
>
|
|
|
 |
Michael Rachow
|
| Posted: 04/05/2002, 1:19 AM |
|
Thanks Alex,
There was a small hope on my side,
that there is a "direct" way.
Michael
"Alexey Alexapolsky" <alexa@codecharge.com> schrieb im Newsbeitrag
news:a8josu$s04$2@news.codecharge.com...
> Make this URL point to dummy CC page,
> add record field to Field Properties/Output tab,
> and in dummy page/open event your code should be like this :
>
> session("some_var") = GetParam("FieldName")
>
> --
> Alex
> CodeCharge Developer
>
>
> "Michael Rachow" <mrachow@BeraCom.de> wrote in message
>news:a8hf83$ap1$1@news.codecharge.com...
> > Hi,
> >
> > I have a grid with one of the columns being an URL field.
> > After the user clicks one of theses records and
> > before the page is closed I would like to set a session variable
> > based on a column value of that selected record.
> > Is there any event slot, where variables point to the selected record?
> >
> > Thanks in advance
> > Michael
> >
> >
> >
>
>
|
|
|
 |
|