Sunka Well-known member Jan 10, 2018 #1 How to open by default in new tab when click on Go To Content button in Reports? It is better that open in new tab so Staff can look reported content and have report open in another tab
How to open by default in new tab when click on Go To Content button in Reports? It is better that open in new tab so Staff can look reported content and have report open in another tab
Arty Well-known member Jan 10, 2018 #2 In report_view find Code: <xf:button href="{$report.link}">{{ phrase('go_to_content') }}</xf:button> add target="_blank" to xf:button Upvote 0 Downvote
In report_view find Code: <xf:button href="{$report.link}">{{ phrase('go_to_content') }}</xf:button> add target="_blank" to xf:button
Sunka Well-known member Jan 10, 2018 #3 Arty said: In report_view find Code: <xf:button href="{$report.link}">{{ phrase('go_to_content') }}</xf:button> add target="_blank" to xf:button Click to expand... Thanks Code: <xf:button href="{$report.link}" target="_blank">{{ phrase('go_to_content') }}</xf:button> Upvote 0 Downvote
Arty said: In report_view find Code: <xf:button href="{$report.link}">{{ phrase('go_to_content') }}</xf:button> add target="_blank" to xf:button Click to expand... Thanks Code: <xf:button href="{$report.link}" target="_blank">{{ phrase('go_to_content') }}</xf:button>