cancel
Showing results for 
Search instead for 
Did you mean: 

Dynamic Links in list report

akshaya_p
Contributor
0 Kudos

I want to bind a data field in list report and render it as a link for dynamic external targets. Is it possible without extensions?

Accepted Solutions (1)

Accepted Solutions (1)

nabheetscn
Active Contributor
0 Kudos

Did you try using UI.DataFieldWithUrl annotation to make links? If yes pls share the annotation detail else refer this tutorial

Answers (1)

Answers (1)

AbhishekSharma
Active Contributor
0 Kudos

Hi Akshaya,

If you are using List control then you can use CustomListItem tag.

<CustomListItem>
            <link>
                <Link text="{yourData>text}>" // this will be displayed in list
                    target="_blank" // this will open new location in blank new tab
                    href="{yourData>url}" />
            </link>
</CustomListItem>

Hope this helps...

Thanks-

Abhishek

akshaya_p
Contributor
0 Kudos

Thanks Abhishek. But i'm using Fiori elements not the usual list control