We're developing a web application using the Vaadin framework.

In this app I have an existing table with a range a columns. On a user action I want to remove some of the existing columns and add some other additional columns.

This proved quite easy, however, I want the added column to be placed as the first column in the table, on the out most left edge of the table, and I can't seem to find any support for this action. Every column that's added is by default placed as the last column, in the out most right of the table.

I hope you understand what I'm asking. If you're somewhat experienced with Vaadin and have an idea on how to achieve this then please share it with me! =)

Thanks!

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

What you should do is to set your

table.setVisibleColumns(your sorted order of columns)

and also

table.setColumnReorderingAllowed(false) 

it might be good to throw in a force of relaoding the datasource so

table.setContainerDataSource(table.getContainerDataSource());
link|improve this answer
Thank you for your answer Marthin! Setting up new arrays for the visible columns sounds like a neat idea, I'll try it out! – AndroidHustle Feb 2 at 12:38
I've tried it out and adding all the columns to the table again in an array with the new column indexed first fixed the problem. Thanks for your help! – AndroidHustle Feb 2 at 13:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.