Hi Ajay,
The best approach is to use a Rich Text Editor widget from the Marketplace instead of a normal text area. This allows users to enter text and add hyperlinks directly.
The hyperlink will be stored in the database as HTML, and when you display it using a Text widget with Render HTML enabled, it will appear as a clickable link. You can also configure it to open in a new tab using target = "_blank".
Regards,
Reemali
Use one of the following:
This allows users to:
The value will be saved as HTML in the database.
Example stored value:
Please check <a href="https://example.com" target="_blank">this link</a>
Entity Attribute → String (Unlimited)
This is required because HTML content can be large.
When showing data:
Use:
HTML Snippet widget
Set:
Content → Attribute (HTML text)
This renders links correctly.
Ensure links contain:
target="_blank"
Most Rich Text editors automatically support this, or you can sanitize/update before save using a microflow.
Enable HTML sanitization to prevent unsafe scripts:
a, p, br, etc.)