Re: GWT Simple Pager Help

2011-01-06 Thread saklig
Hi Noor, Heres an example of a Celltable (using a DataProvider): public class TestTable implements EntryPoint { private GreetingServiceAsync gService; private CellTableMyStat table; /** * This is the entry point method. */ public void

Re: Events from SelectionCell in CellTable - GWT 2.1 M1

2010-06-28 Thread saklig
(fieldUpdater) on the Column class On Jun 27, 6:28 am, saklig d3andr...@gmail.com wrote: Which class has the addValueUpdateHandler ? On Jun 25, 4:08 pm, Paul Stockley pstockl...@gmail.com wrote: Can't you just add a ValueUpdater handler to see when the selection changes? On Jun

Re: Events from SelectionCell in CellTable - GWT 2.1 M1

2010-06-27 Thread saklig
Which class has the addValueUpdateHandler ? On Jun 25, 4:08 pm, Paul Stockley pstockl...@gmail.com wrote: Can't you just add a ValueUpdater handler to see when the selection changes? On Jun 25, 4:27 am, saklig d3andr...@gmail.com wrote: After a couple of tries Ive managed to write

Re: Events from SelectionCell in CellTable - GWT 2.1 M1

2010-06-25 Thread saklig
); } sb.append(option); sb.append(/option); } sb.append(/select); } } If you think this was the wrong/not the best way to get an event from a cell, pleas give me a comment. On Jun 22, 1:25 pm, saklig d3andr...@gmail.com

Events from SelectionCell in CellTable - GWT 2.1 M1

2010-06-22 Thread saklig
Hi, How does one handle events from cells in a CellTable( specifically a SelectionCell ) ? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-tool...@googlegroups.com. To unsubscribe from this

Re: Simple working example of the Data Presentation Widget CellTable

2010-06-03 Thread saklig
This helped me a lot :-) Thanks guys! On Jun 3, 2:14 pm, Paul Stockley pstockl...@gmail.com wrote: Sorry my message got truncated: Your over complicating it. You should just subclass AsyncListViewAdapter such as:         protected class residentAsyncAdapter extends

Simple working example of the Data Presentation Widget CellTable

2010-06-02 Thread saklig
Hi, I want to create a working example of the CellTable widget that was recently released in GWT 2.1 M1. I'm having a hard time finding documentation for this widget, as apparently it has not been written yet :-/ What I've tried so far: ListMyCellData dataList = new ArrayListMyCellData();