Skip to main content
Solved

HTML custom screen

  • December 15, 2021
  • 2 replies
  • 188 views

tiago
Captain
Forum|alt.badge.img+5

I need to create to a header for my aplication in the Universal, and I want to use the custom screen functionality as described here.

For some reason i continue to receive an [unkown error] message in the aplication as soon as I set the HTML field to an expression. 

What am I doing wrong?

 

in the expression field I´ve tried full html, starting with div tags, and plain text, but it all leads to the same error.

 

Here are my settings:

 

 

Best answer by Erwin Ekkel

To use an expression column with HTML you have to add quote’s since expression columns are SQL based. So your text becomes:

'<div> ... </div>'

This topic has been closed for replies.

2 replies

Forum|alt.badge.img+17
  • Moderator
  • Answer
  • December 16, 2021

To use an expression column with HTML you have to add quote’s since expression columns are SQL based. So your text becomes:

'<div> ... </div>'


tiago
Captain
Forum|alt.badge.img+5
  • Author
  • Captain
  • December 16, 2021

thanks a lot Erwin. that fixed it