Expand my Community achievements bar.

Returning link paths using Multifield

Avatar

Level 6

I have a doubt. I'm trying to return a link path but it's coming in a string format. How to return a hyperlink that will point to the exact page instead of returning the path as a string?

4 Replies

Avatar

Community Advisor

Hi @Sanjana12 

 

You just need to put the String in href attribute of anchor tag so that the hyperlink is added.

Please see the below code for <a> tag.

 

<div data-sly-list.item="${books.bookDetailsWithMap}">

        <p> Book : <b>${item.bookname} </b></p>
        <a href="${item.booksubject}"> Book Link</a> 
    
    </div>

Avatar

Level 6

Actually we have to wrap both of them into href otherwise it's not working

Avatar

Employee Advisor

Hi @Sanjana12 ,

 

Any string added to href of anchor will show it as a link.

Can you please explain a little to understand the exact issue.

 

Thanks

Avatar

Level 6

When I'm putting the link path within href attribute, it's just returning the string value. But only when I'm wrapping the link path with the title name or whatsoever within anchor tag, it's rendering a hyperlink.