• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Hyperlinking

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Is there an easy way to have links or email addresses to appear "clickable" when using a relational record faces component?

We need to have some links available, ut want to avoid cutting and pasting.
 
Ranch Hand
Posts: 92
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I don't know if I got it... you mean to say that you have an object which has a property that holds an e-mail address and you want to create a mailto: link for this address? If that's the case, you can use some EL:

This will create a field with the current value of the user's e-mail (so you can change it) and a link beside it which you can click and the default mail application will be opened with a new message for that recipient. Does this cover what you want to know?
[ June 07, 2006: Message edited by: Henrique Sousa ]
 
Saloon Keeper
Posts: 27762
196
Android Eclipse IDE Tomcat Server Redhat Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Are you looking for something that the <h:commandLink> tag doesn't offer?
 
K Marshall
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Sorry, was away yday on training. I actually got this resolved via "<h:outputLink value="mailto:#{var.email}">". Thanks for your help and feedback, though.
 
reply
    Bookmark Topic Watch Topic
  • New Topic