Please tell me how to set up dynamiclink when switching between interfaces.
Discussion posts and replies are publicly visible
Hi sansanw5661 , Below code might be helpful
a!localVariables( local!test:true, { a!richTextDisplayField( value: { a!richTextItem( text: "change text", link: a!dynamicLink( value: not(local!test), saveInto: local!test ), linkStyle: "STANDALONE" ) } ), a!richTextDisplayField( value: "true", showWhen: local!test ), a!richTextDisplayField( value: "false", showWhen: not(local!test) ) } )