Get a first look at what's coming. The Developer Passport Australia Release Preview kicks off March 12. Dive in! 

How to change the insert link of the kb article

chandan1994
Tera Contributor

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

chandan1994_0-1697192963811.png

7 REPLIES 7

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.

I changed the order still it is not reflecting

chandan1994_0-1698750016872.png

chandan1994_1-1698750034560.png

 

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]" />