Re: CellTable CheckboxCell setTitle()

2011-12-26 Thread Vivek Dudani
Hey, thanks a lot Ed. It worked. On Dec 23, 5:33 pm, Ed post2edb...@gmail.com wrote: Override the method CheckboxCell.render(..) and add the title attribute as a string (see source of CheckboxCell). CheckboxCell is part of the CellWidget family and don't extend from Widget, which make them

Re: CellTable CheckboxCell setTitle()

2011-12-26 Thread Ed Bras
Good to hear :) On Mon, Dec 26, 2011 at 9:35 AM, Vivek Dudani vaxy.d...@gmail.com wrote: Hey, thanks a lot Ed. It worked. On Dec 23, 5:33 pm, Ed post2edb...@gmail.com wrote: Override the method CheckboxCell.render(..) and add the title attribute as a string (see source of CheckboxCell).

Re: CellTable CheckboxCell setTitle()

2011-12-26 Thread Vivek Dudani
Hey, can u help me out with one more issue.. I need to add title for each row as Select row 1, Select row 2... and so on. can we put some dynamic string inside title attribute that will show row number in title(i.e. tooltip) for each row or any other way of achieving it? Please workaround if

Re: CellTable CheckboxCell setTitle()

2011-12-26 Thread divStar
Hey Vivek, this might be relevant for you: http://groups.google.com/group/google-web-toolkit/browse_thread/thread/512c65f0f8a3d0bc/cec88ea01013338c?lnk=gstq=celltable+title#cec88ea01013338c --- In GWT 2.5, you'll be able to provide your own CellTableBuilder (you'll probably subclass the

CellTable CheckboxCell setTitle()

2011-12-23 Thread Vivek Dudani
Hi, I need to set tooltip for CheckboxCell which i'm adding in a cellTable. created a new CheckboxCell and then added it to CellTable header. cannot find any setTitle or anything else. Even tried with below code : public void setTitle(String title){ if (title == null

Re: CellTable CheckboxCell setTitle()

2011-12-23 Thread Ed
Override the method CheckboxCell.render(..) and add the title attribute as a string (see source of CheckboxCell). CheckboxCell is part of the CellWidget family and don't extend from Widget, which make them fast and lightweight. See: