Error display in vaadin table -


i'm pretty new vaadin framework, working fine until... table header don't show properly,... i'm working on portlet runs on exoplatform, i'm using vaadin 6, table display first header, tried nothing seems work. here code:

table = new table("my table");         table.setcolumnheadermode(table.column_header_mode_explicit);         table.setpagelength(9);         table.setwidth("100%");          table.addcontainerproperty("sad", string.class,  null);         table.addcontainerproperty("asd", integer.class,  null);         table.addcontainerproperty("qwerty", integer.class,  null);          table.setcolumnheadermode(table.column_header_mode_explicit);         table.setcolumnheader("sad", "sad");         table.setcolumnheader("asd", "asd");         table.setcolumnheader("qwerty", "qwerty"); 

i had same problem, try wrap table panel. works me.

it seems tables in verticallayout overlaps header of next table, first header shown. obvious when width of tables different - see how 1 table overlaps header of table below.

hope helps.


Comments

Popular posts from this blog

ios - iPhone/iPad different view orientations in different views , and apple approval process -

monitor web browser programmatically in Android? -

c# - Using multiple datasets in RDLC -