Added Special Characters in a Link Button

0
Hi there!, I need to set a caption with HTML special charaters to a link button, in this case I would need to write the '>' character. I tried to add it literally and using the html code > without success. Thanks in advance.
asked
2 answers
1

Hello Carlos,

This is a bug in the client where we accidentally escape html entities twice. This is fixed and will be released with Mendix 5.18.

With love from R&D.

answered
0

You can maybe inject content using JavaScript

Maybe something like:

$(".appendGt").html($(".appendGt").html()+">");

Just add that special .appendGt class to your button and execute the above in an HTMLSnippet rendered as JS. Something like that anyways...

Thankyou

answered