cancel
Showing results for 
Search instead for 
Did you mean: 

Hide 1 of 3 header row

Former Member
0 Kudos

Hi experts.

Maybe you can help me.

I have table:

Header

  -header_row_1

  -header_row_2

  -header_row_3

Body

Footer

On same pages i need to hide "header_row_1". Is it possible?.

I tried to do this:

data.Table.Table.Header.Table4.ActRow::ready:layout - (FormCalc, client)

var pg = xfa.layout.page( ref($) )

if ( pg == 1 or pg == 3 or pg == 5 or pg == 7 or pg == 9 or pg == 11 or pg == 13 ) then

  $.presence = "Visible"

else

  $.presence = "hidden"

endif

Almost its works. But a have FREE space then i hide row.

Accepted Solutions (0)

Answers (1)

Answers (1)

rohit_singhal
Active Contributor
0 Kudos

Hi Ilya,

Have you tried using $(this).hide() and $(this).show() functions?

They should hide/show the required elements without any white space in their place.

Best Regards

Rohit