Re: GWT: CheckBoxCell and Selection change event

2016-06-29 Thread Ajit Gupta
Hi I am facing same problem. Can you tell me what is problem in model level. On Friday, 11 May 2012 15:34:49 UTC+5:30, Qrunk wrote: > > Hi Thomas, > > Thanks for the reply. Actually we were trying the same thing what you had > mentioned, but a piece of code missing at model level which was

Re: GWT: CheckBoxCell and Selection change event

2012-05-11 Thread Thomas Broyer
It's not clear to me what the checkbox checkness represents: is the checkbox used to select rows? or to set some boolean value of the row? If the former, then have a look at http://gwt.google.com/samples/Showcase/Showcase.html#!CwCellTable // Checkbox column. This table will uses a checkbox

Re: GWT: CheckBoxCell and Selection change event

2012-05-11 Thread Qrunk
Hi Thomas, Thanks for the reply. Actually we were trying the same thing what you had mentioned, but a piece of code missing at model level which was causing the problem. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this

Re: GWT: CheckBoxCell and Selection change event

2012-05-10 Thread Qrunk
Perhaps the question is not yet clear, I will try to rephrase it : We are trying to create a DataGrid with editable cells, in which one of them is CheckBoxCell.we are using selection model as *SingleSelectionModel*. Now this CheckboxCell takes two arguments in its constructor, i.e. */** *

GWT: CheckBoxCell and Selection change event

2012-05-09 Thread Qrunk
I am using the following constructor to create a checkboxcell in an editable data grid. *CheckboxCell(false, true)* When I use this and click at any place in the row, selection change event does not fire and I am using *Single selection model* . When I use, *CheckboxCell();*

Re: GWT: CheckBoxCell and Selection change event

2012-05-09 Thread Qrunk
Any help on this issue will be very helpful On Wednesday, 9 May 2012 16:00:25 UTC+5:30, Qrunk wrote: I am using the following constructor to create a checkboxcell in an editable data grid. *CheckboxCell(false, true)* When I use this and click at any place in the row, selection