To avoid this problem, use different resources (like different style
sheets ). I send the code segment.
S. Abraham
www.DataStoreGwt.com
public interface CellTableResources1 extends CellTable.Resources
{
@Source("your_css1.css")
Style cellTableStyle();
}
public interface CellTableResources2 extends CellTable.Resources
{
@Source("Your_css2.css")
Style cellTableStyle();
}
//cell table
CellTableResources firstCss = GWT.create(CellTableResources1.class);
CellTableResources2 secondCss = GWT.create(CellTableResources2.class);
CellTable<Person> table1 = new CellTable<Person>(25, firstCss );
CellTable<Person> table2 = new CellTable<Person>(25, secondCss);