composant table (addinfirst )

hello

I want to add a new column to my table that already exists will be the first settlers

help please

Correct me if I got You wrong. So as far as I understood - You want some column to be first in your table? If yes, then you can specify the order of the columns with the following method.


  table.setVisibleColumns(new String[] {"DESIRED_TO_BE_FIRST_PROPERTY", "SOME_OTHER_PROPERTY"});

As a result You will have the column corresponding to DESIRED_TO_BE_FIRST_PROPERTY at the first place in your table.

Best Regards,
Alexander.