How to change the insert link of the kb article
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-31-2023 12:49 AM
How to change the order insert link open link in.., (options)- None(use implicit). I want same frame (_self ) to be 1st. Note I want to do it in KB article form
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-31-2023 03:51 AM
Hi @chandan1994
I tried the above solution and it works!
Please mark the Response as Solution Accepted if it worked for you so that it will benefit others too.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-31-2023 04:01 AM
I changed the order still it is not reflecting
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-31-2023 04:22 AM
I updated again and it worked for me!
update your line 53 to line line 57 with the below HTML code:
<j2:set var="jvar_selected_target" value="$[RP.getWindowProperties().get('f_target')]" />
<g2:ui_select_option text="${gs.getMessage('Same frame (_self)')}" value="_self" selected="$[jvar_selected_target]" />
<g2:ui_select_option text="${gs.getMessage('None (use implicit)')}" value="" selected="$[jvar_selected_target]" />
<g2:ui_select_option text="${gs.getMessage('New Window (_blank)')}" value="_blank" selected="$[jvar_selected_target]" />
<g2:ui_select_option text="${gs.getMessage('Top frame (_top)')}" value="_top" selected="$[jvar_selected_target]" />