cancel
Showing results for 
Search instead for 
Did you mean: 

open in a new window on click of hyperlink

shiny_victoria
Explorer
0 Kudos
99

Hi,

I have created a BSP application which display partner details. here Partner ID is a hyperlink. On click of the hyperlink it is opening in the Same page. I need to open this in a new page.

below is the code



        <htmlb:tableViewColumn columnName    = "PARTNER"
                               type          = "LINK"
                               linkColumnKey = "LINK"
                               title         = "Partner ID" />

Please provide me some inputs for me open the link in a new window on click of the hyperlink.

Regards,

Shiny

View Entire Topic
Former Member
0 Kudos

Hi,

Just add the "linkClickTarget" parameter, like this:

<htmlb:tableViewColumn columnName    = "PARTNER"
                               type          = "LINK"
                               linkColumnKey = "LINK"
                               linkClickTarget = "_new"
                               title         = "Partner ID" />

Best regards,

Tanguy

shiny_victoria
Explorer
0 Kudos

Thanks a lot Tanguy. It worked

Regards,

Shiny