Re: TextCell in Cell Table

2011-09-26 Thread Sudhakar Abraham
Subclass the ColumnT,C class, and pass the TextCell in super class constructor. Try the below code. public class MyTextCellColumn extends ColumnYourDomainClass, String { public MyTextCellColumn () { super(new TextCell()); } @Override public String getValue(YourDomainClass

TextCell in Cell Table

2011-09-24 Thread gangurg gangurg
Can I add Text Cell in Cell Table . I extended TextCellbut later realzied cant add cellTable.addColumn(MyTextCell,Col Name) public class MyTextCell extends TextCell { public MyTextCell () { super(); } public void render(Context context, SafeHtml value, SafeHtmlBuilder sb) { if (value != null) {