Open page in new window (Tab)

Someone could add the function to the calculation:
open page in new window (Tab).

Thank you

CONCAT (‘<a’, CHAR (32), ‘href = "https: // URL / APP / PAGE / DETAILS-PAGE /’, {Record ID}, ‘"’, CHAR (32), ‘class = " btn ‘, CHAR (32),’ btn-block ‘, CHAR (32),’ btn-primary ‘, CHAR (32),’ td-data-link “> ‘,’ <i ', CHAR (32), ‘class = "fal’, CHAR (32), 'fa-database”> ’, CHAR (32), ‘Click’, CHAR (32), ‘here ’)

Hey @DanioA, this can be done with the tags target attribute (https://www.w3schools.com/tags/att_a_target.asp) target="blank_"

CONCAT('<a target="blank_"',CHAR(32),'href="https://URL/APP/PAGE/DETAILS-PAGE/',{Record ID},'"',CHAR(32),'class="btn',CHAR(32),'btn-block',CHAR(32),'btn-primary',CHAR(32),'td-data-link">Click',CHAR(32),'here</a>')

@Chem
Thanks a lot Chem, also of the link

1 Like