Re: Implement select all in CellTable

2015-01-29 Thread Sahaana Govindan
Thanx alexandra, its working On Tuesday, April 19, 2011 at 12:21:18 PM UTC+5:30, Alexandre Ardhuin wrote: > Hi, > > You can use a "com.google.gwt.view.client.MultiSelectionModel" with your > CellTable > > MultiSelectionModel msm = new MultiSelectionModel(); > cellTable.setSelectionModel(msm); >

Re: Implement select all in CellTable

2014-06-27 Thread Alicia Tang
Hi Alexandre, I tried that but that did not mark the checkboxes as selected inside the checkbox column. On Monday, April 18, 2011 11:51:18 PM UTC-7, Alexandre Ardhuin wrote: > > Hi, > > You can use a "com.google.gwt.view.client.MultiSelectionModel" with your > CellTable > > MultiSelectionModel

Re: Implement select all in CellTable

2011-04-18 Thread Alexandre Ardhuin
Hi, You can use a "com.google.gwt.view.client.MultiSelectionModel" with your CellTable MultiSelectionModel msm = new MultiSelectionModel(); cellTable.setSelectionModel(msm); for (T item : cellTable.getVisibleItems()) { msm.setSelected(item, true); } Alexandre 2011/4/18 Subhrajyoti Moitra >

Implement select all in CellTable

2011-04-17 Thread Subhrajyoti Moitra
Hello, Can some one please point me to a "Select All" functionality in a CellTable? The functionality i have to implement, is that some of the CellTable headers has a select box which when clicked will select all the rows of CellTable being displayed. Please give some hints as to how to implement