Community
Participate
Working Groups
To reproduce: * create a table with some columns and items * in a subsequent request, execute the following code: while( table.getColumnCount() > 0 ) { table.getColumn( 0 ).dispose(); } new TableColumn( table, SWT.NONE ); table.getColumn( 0 ).setText( "column header" ); while( table.getItemCount() > 0 ) { table.getItem( 0 ).dispose(); } for( int i = 0; i < 11; i++ ) { TableItem tableItem = new TableItem( getTable(), SWT.NONE ); tableItem.setText( "some text" ); } -> on the client, the desired number of rows are created but neither the table column not the table rows show any text
This issue might be related to bug 313569
Rüdiger, I think that this bug is invalid as you create the new column (see snippet above) without setting the column width. If you set the column width everything is back to normal.
(In reply to comment #2) > Rüdiger, I think that this bug is invalid as you create the new column (see > snippet above) without setting the column width. If you set the column width > everything is back to normal. Hm, I think you have a point hrere ;) Sorry for the noise, Ivan.