href link in Text Field

Hi
I have a table with a field text. In this field I have some text and now and then a hyperlink. It looks like this:Content of text field:
…Further Information click here: HPI’d like to open the website “URLToWebsite” in a new tab ("target=‘_blank’)How can I manage this? I tried to change the configuration of the field in Hyperlink → Custom attribute, but this did not work. If I write "target=‘_blank’ in the a-tag, it will be deleted.Yves

You may use target attribute in your HTML (the tag), see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a.Hyperlink → Custom attribute is for the hyperlink of the whole field value (not part of it).

Thank you, but no. . . . .I can insert in my field (Data type: text; View Page: Formatet text; Edit Page: textarea):
HP
after saving, phpMaker deletes the target:
HPIf I insert
HP
via phpMyAdmin directly in the database, it works, so it seems, that this is a phpMaker configuration.

You may use Row_Rendered server event to customize ViewValue of the field, see the topic Server Events and Client Scripts in the help file.

Solution:
You can use the global code (server side) to set:
$PurifierConfig->set(‘Attr.AllowedFrameTargets’, array(‘_blank’));