cancel
Showing results for 
Search instead for 
Did you mean: 

Change the font attribute for a cell of a table

Former Member
0 Kudos

Hi

I've read a post like [this|; in order to get a solution on my issue, but it doesn't work.

I have a field is not displayed in the form, I need to check it in order to decide if the value of other cell has to be write in bold else it has to be write normal.

Max

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Ok

I've solved by myself:

The problem was the field I need for my validation it wasn't inthe layout.

So I've added this field in the layout as hidden field and written the following script:

if ( this.parent.TITOLO.rawValue == "X" )
{
this.font.weight = "bold";
}

Max