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

javascript - jQuery: Add class depending on URL in the best way -

caching - How to check if a url path exists in the service worker cache -

Redirect to a HTTPS version using .htaccess -