cancel
Showing results for 
Search instead for 
Did you mean: 

Hide a row of table control

Former Member
0 Kudos

I have 5 rows in a table control. I don't want to display row 4 on the screen. Is there any property that can be set for this?

The node for this table control should contain all the 5 rows, but only 4 rows should be shown on the screen.

Points will be rewarded. Thanks.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

hi john....

you can follow this solution:

consider youare having 5 rows and the 4th row must be hid. the node is n1. the internal table with all 5 values is it1.

copy it1 to it2 to retain the orginal values.

delete 4th row and insert an empty record there or at the last, according to your logic.

now bind it1 to n1.

this is your desired output.

---regards,

alex b justin

Former Member
0 Kudos

I dont want to insert the empty record bcoz then an empty row will be shown on the screen for the 4th record.

I want to display only rows 1, 2, 3 and 5 on the screen when the node for the table control contains rows 1, 2, 3, 4 and 5.

Hope am clear.

Former Member
0 Kudos

hi john........

thats what.........

you cannot hide a row... rather dont insert a record. just delete it.

so the orginal values will be present in it2 and your node will be having it1.

your table also will show only 4 records.

if in any case you want to bring the orginal values to the table, bind it2 to n1.

---regards,

alex b justin