Re: How to add dynamic colums to celltable

2013-03-03 Thread Karthik Rallapalli
Juan, Have you figured out a way to include column sorting with this example. I tried to use ListHandler but had no luck . Thanks. On Friday, 24 August 2012 09:30:57 UTC-4, Juan Pablo Gardella wrote: Hi, I show my code where use it. CellTableListString table = new

How to add dynamic colums to celltable

2012-08-24 Thread lucky
Hi, i have a requirement that i need to add dynamic columns to cell table. i Google it but didn't find proper solution. Please provide me some sample to add dynamic columns to cell table Thanks in advance -- You received this message because you are subscribed to the Google Groups Google

Re: How to add dynamic colums to celltable

2012-08-24 Thread Juan Pablo Gardella
See http://stackoverflow.com/questions/7172262/create-gwt-celltable-dynamically 2012/8/24 lucky lucky.begum...@gmail.com Hi, i have a requirement that i need to add dynamic columns to cell table. i Google it but didn't find proper solution. Please provide me some sample to add dynamic

Re: How to add dynamic colums to celltable

2012-08-24 Thread lucky
if possible could you please provide me the brief sample example (like in the showcase). Thanks On Fri, Aug 24, 2012 at 6:40 PM, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: See http://stackoverflow.com/questions/7172262/create-gwt-celltable-dynamically 2012/8/24 lucky

Re: How to add dynamic colums to celltable

2012-08-24 Thread Juan Pablo Gardella
Hi, I show my code where use it. CellTableListString table = new CellTableListString(); ListListString rows = ... for (int column = 0; columna columnCount; column++) { table.addColumn(new IndexedColumn(column), new TextHeader(columnsArray[column])); } final