Seppo Apajalahti
|
| Posted: 01/17/2003, 11:18 PM |
|
Hi!
I', using PHP + MySQL + CCS2beta
I have a grid where one of the fields is e-mail address. How can change the
field to a mailto: -field so that I can send e-mail with a doubleclick?
I'm sorry about my bad English.
--
Seppo Apajalahti
|
|
|
 |
RonB
|
| Posted: 01/19/2003, 2:29 AM |
|
global $yourgrid;
$yourgrid->emailfield->setvalue("<a href='mailto:"
..$yourgrid->emailfield->Value ."'>" .$yourgrid->emailfield->Value "</a>");
in the beforeshow event.
Ron
"Seppo Apajalahti" <seppo.apajalahti@pp.inet.fi> schreef in bericht
news:b0av4m$6ji$1@news.codecharge.com...
> Hi!
>
> I', using PHP + MySQL + CCS2beta
>
> I have a grid where one of the fields is e-mail address. How can change
the
> field to a mailto: -field so that I can send e-mail with a doubleclick?
> I'm sorry about my bad English.
>
> --
> Seppo Apajalahti
>
>
>
|
|
|
 |
KP
|
| Posted: 01/19/2003, 8:30 PM |
|
Is it the same for Cold Fusion????
KP
"RonB" <r.borkent@123chello123.nl> wrote in message
news:b0dumc$ln2$1@news.codecharge.com...
> global $yourgrid;
> $yourgrid->emailfield->setvalue("<a href='mailto:"
> .$yourgrid->emailfield->Value ."'>" .$yourgrid->emailfield->Value
"</a>");
>
> in the beforeshow event.
>
> Ron
>
>
> "Seppo Apajalahti" <seppo.apajalahti@pp.inet.fi> schreef in bericht
>news:b0av4m$6ji$1@news.codecharge.com...
> > Hi!
> >
> > I', using PHP + MySQL + CCS2beta
> >
> > I have a grid where one of the fields is e-mail address. How can change
> the
> > field to a mailto: -field so that I can send e-mail with a doubleclick?
> > I'm sorry about my bad English.
> >
> > --
> > Seppo Apajalahti
> >
> >
> >
>
>
|
|
|
 |
RonB
|
| Posted: 01/20/2003, 8:34 AM |
|
Don't know cold fusion but the principle should be the same. Take the value
from the email field put a string around it containing the html <a href bit
.
RonB
"KP" <list_receiver@hotmail.com> schreef in bericht
news:b0fu08$dhs$1@news.codecharge.com...
> Is it the same for Cold Fusion????
>
> KP
> "RonB" <r.borkent@123chello123.nl> wrote in message
>news:b0dumc$ln2$1@news.codecharge.com...
> > global $yourgrid;
> > $yourgrid->emailfield->setvalue("<a href='mailto:"
> > .$yourgrid->emailfield->Value ."'>" .$yourgrid->emailfield->Value
> "</a>");
> >
> > in the beforeshow event.
> >
> > Ron
> >
> >
> > "Seppo Apajalahti" <seppo.apajalahti@pp.inet.fi> schreef in bericht
> >news:b0av4m$6ji$1@news.codecharge.com...
> > > Hi!
> > >
> > > I', using PHP + MySQL + CCS2beta
> > >
> > > I have a grid where one of the fields is e-mail address. How can
change
> > the
> > > field to a mailto: -field so that I can send e-mail with a
doubleclick?
> > > I'm sorry about my bad English.
> > >
> > > --
> > > Seppo Apajalahti
> > >
> > >
> > >
> >
> >
>
>
|
|
|
 |