Re: Update Chrome to 10.0.612.1 does not work with either 2.1.0 or 2.1.1

2010-12-20 Thread Efstathios Kalyvas
I have the same issue. I have stopped using dev mode and i reverted to standard mode. On Sun, Dec 19, 2010 at 1:56 AM, Jim Douglas jdou...@basis.com wrote: I see the same failure here. It looks like Chrome dev version 10.0.612.1 breaks GWT DevMode, but production mode seems to work ok.

Re: GWT MVP and RequestFactory

2010-12-19 Thread Efstathios Kalyvas
Hi, I have exactly the same error I cannot resolve it. I am using google eclipse plug in to create my project. Google is not providing a simple working demo of RequestFactory (including all the jar references the web.xml etc). They make things difficult for no reason. So far I am using RPC to

Re: CellTable, how to create a cell with custom listbox

2010-12-03 Thread Efstathios Kalyvas
Thank you very much John for pointing the direction. I'll do it and share it. On Fri, Dec 3, 2010 at 11:50 PM, John LaBanca jlaba...@google.com wrote: You can create a Popup containing your list of options (some people have used a vertical MenuBar as a list of selectable items). When the

Re: How to override CellTable css

2010-11-28 Thread Efstathios Kalyvas
That is correct, you also need the following: CellTableResource resource = GWT.create(CellTableResource.class); CellTablePropertyLight table = new CellTablePropertyLight(10,resource); as Marcin suggests. On Sun, Nov 28, 2010 at 11:34 AM, Marcin Misiewicz misq...@gmail.comwrote: I guess,