Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeDNN Open Source...DNN Open Source...Module ForumsModule ForumsXMLXMLhelp needed: creating clickable links.help needed: creating clickable links.
Previous
 
Next
New Post
9/2/2009 1:19 PM
 

Damien, links are not clickable in XML directly.

I thought you want to XSL-transform your XML to HTML

 
New Post
9/2/2009 2:10 PM
 

That was indeed what I was trying to accomplish, but I was trying to get multiple items that each have their own tab that contains a web address to be displayed in HTML, and be clickable.

I've searched the internet for some information about this and found that this XSL code will work for me.

<html xsl:version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml">
  <body>
<xsl:for-each select="parent/child">
   <span>
      <a><xsl:attribute name="href">
         <xsl:value-of select="link"/>
      </xsl:attribute>Click Here</a>
  </span>
</xsl:for-each>
</body>
</html>

It took me a while to find the a site that described my same problem.  Thank you very much for the quick responses.

 
New Post
9/2/2009 3:13 PM
 

Your code can be shorten to:

<html xsl:version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml">
  <body>
<xsl:for-each select="parent/child">
   <span>
      <a href="{link}"/>Click Here</a>
  </span>
</xsl:for-each>
</body>
</html>

 
New Post
9/2/2009 3:30 PM
 

Thanks, it's working for me now.

Awsome response time by the way.

 
Previous
 
Next
HomeHomeDNN Open Source...DNN Open Source...Module ForumsModule ForumsXMLXMLhelp needed: creating clickable links.help needed: creating clickable links.


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out