cancel
Showing results for 
Search instead for 
Did you mean: 

How can I hide the row selector in a table control?

Former Member
0 Kudos

Hello community,

i am using a table to list a couple of file attachments with a LinkToUrl control.

now I am trying to minimize the table layout (hide the footer etc.).

Is there any way to hide the row selector in front of every row?

I might also want to hide the headline of the table. How can I do this?

Thanks in advance for your efforts.

Regards

Carsten

Edited by: Carsten Zimmermann on Nov 20, 2008 11:01 AM

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

HI,

Just change the selectionMode property of the Table to "none" then you can hide the row selectable.

I might also want to hide the headline of the table. means to hide the column header just go to each column header and make visibility property to none.

hope it helps you.

Regards,

ramesh

Former Member
0 Kudos

Ok, that seems to work, thanks a lot.

To remove the borders of the table I have selected "gridMode = none". It should now hide all grids of the table. But now a border is drawn around the whole table.

Can I hide that as well?

Former Member
0 Kudos

Try tableDesign=transparent.

Armin

Former Member
0 Kudos

That is already set to transparent, but the border is still drawn.

I just don't want to create the LinkToFile controls dynamically at runtime... The table control is much more elegant

Answers (2)

Answers (2)

former_member1
Active Participant
0 Kudos

Hi,

You can make the selection as none. This will remove the Row Selector of the table.

piyush_kumar6
Active Contributor
0 Kudos

Hi Carsten,

Yes you can hide it.

Make footerVisible property of table to Flase.

Even you can restrict the user to select the table row by making

rowSelectable property of table to Flase.

Regards

Piyush

Former Member
0 Kudos

Unfortunately hiding the footer doesn't have any effect on the header or the row selector in my application.

Is the header really hidable by selecting footerVisible = false?

Former Member
0 Kudos

Of course not. To remove the table header, remove the Caption aggregated at the TableColumn.

Armin