cancel
Showing results for 
Search instead for 
Did you mean: 

HIDDING COLUMN AND ROW IN THE TABLE

Former Member
0 Kudos

Hi,

Does anyone know how to hide the particular row and column in the table?Whether is it possible?

Please let me know?

Accepted Solutions (0)

Answers (1)

Answers (1)

harman_shahi
Contributor
0 Kudos

You can use the following code to Hide Table rows:

//Following line will just hide the data within the Row1
Table1.Row1.presence = "invisible";

//Following line will hide the table line from the layout
Table1.Row1.presence = "hidden";

I'm not sure if there is an easy way to hide a Table column; you might have to loop the entire table, and hide the (Set presence = hidden) for all the fields.

hope this helps,

Harman