anchor with mailto

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

anchor with mailto

Sebastian Sastre-2
hi there,
if I use this:

        html anchor
                callback:[:r| self session redirectTo: self mailto];
                with: 'mail me'

clicking it and the next page is blank.
in the other hand if I make this:

        html popupAnchor
                callback:[:r| self session redirectTo: self mailto];
                with: 'mail me'

clicking it and the original session page is preserved, the mailto behaves as
expected but an unwanted blank page is poped up.
so.. how do you use a mailto these days?
thanks,
sebastian

_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

RE: anchor with mailto

Boris Popov, DeepCove Labs (SNN)
html anchor
 url: ('mailto:' , address);
 with: 'Contact Us'.

No?

-Boris

--
+1.604.689.0322
DeepCove Labs Ltd.
4th floor 595 Howe Street
Vancouver, Canada V6C 2T5
http://tinyurl.com/r7uw4

[hidden email]

CONFIDENTIALITY NOTICE

This email is intended only for the persons named in the message header.
Unless otherwise indicated, it contains information that is private and
confidential. If you have received it in error, please notify the sender
and delete the entire message including any attachments.

Thank you.
-----Original Message-----
From: [hidden email]
[mailto:[hidden email]] On Behalf Of
Sebastian Sastre
Sent: Monday, March 23, 2009 1:32 PM
To: 'Seaside - general discussion'
Subject: [Seaside] anchor with mailto

hi there,
if I use this:

        html anchor
                callback:[:r| self session redirectTo: self mailto];
                with: 'mail me'

clicking it and the next page is blank.
in the other hand if I make this:

        html popupAnchor
                callback:[:r| self session redirectTo: self mailto];
                with: 'mail me'

clicking it and the original session page is preserved, the mailto
behaves as expected but an unwanted blank page is poped up.
so.. how do you use a mailto these days?
thanks,
sebastian

_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: anchor with mailto

Julian Fitzell-2
Yes. No callback needed for mailto: as it's all handled client-side.

On Mon, Mar 23, 2009 at 9:37 PM, Boris Popov <[hidden email]> wrote:
html anchor
 url: ('mailto:' , address);
 with: 'Contact Us'.

No?

-Boris

--
+1.604.689.0322
DeepCove Labs Ltd.
4th floor 595 Howe Street
Vancouver, Canada V6C 2T5
http://tinyurl.com/r7uw4

[hidden email]

CONFIDENTIALITY NOTICE

This email is intended only for the persons named in the message header.
Unless otherwise indicated, it contains information that is private and
confidential. If you have received it in error, please notify the sender
and delete the entire message including any attachments.

Thank you.
-----Original Message-----
From: [hidden email]
[mailto:[hidden email]] On Behalf Of
Sebastian Sastre
Sent: Monday, March 23, 2009 1:32 PM
To: 'Seaside - general discussion'
Subject: [Seaside] anchor with mailto

hi there,
if I use this:

       html anchor
               callback:[:r| self session redirectTo: self mailto];
               with: 'mail me'

clicking it and the next page is blank.
in the other hand if I make this:

       html popupAnchor
               callback:[:r| self session redirectTo: self mailto];
               with: 'mail me'

clicking it and the original session page is preserved, the mailto
behaves as expected but an unwanted blank page is poped up.
so.. how do you use a mailto these days?
thanks,
sebastian

_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside


_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside