Re: Can Editor/Driver framework be used in place of Colum/EditTextCell in Cell widgets?

2011-04-03 Thread -sowdri-
Joseph, Integrating Cells and Editors is in progress. Refer the following issue for details. http://code.google.com/p/google-web-toolkit/issues/detail?id=6206 Once this feature has been released, then what you are expecting to achieve would be straight fwd. Meanwhile you could try the workaro

Is com.google.gwt.view.client.Range restricted to client side usage only?

2011-04-03 Thread JosephLi
This is probably a silly question. I tried using Range in one of the finder method for a domain class that retrieve info via RequestFactory +RequestContext framework. The finder would compile and work without problem if the range given is listed as two separate int. However, it would fail on startu

authentication question

2011-04-03 Thread Leung
Hi, I am not sure do my plan for authentication is safe. Pls point out my mistake. I use RPC to handle the login request. After verifying the user name and password from client request, the server replies by sending back the acctId and cookie with session id. So the widgets on the client side u

Re: Execution order of onModuleLoad and body.onload

2011-04-03 Thread Thomas Broyer
body.onload happens after DOMContentReady (can be long after!), and in most browsers (everyone except IE6/7/8?), onModuleLoad will be called at DOMContentReady. So no, you cannot be assured onModuleLoad is called after body.onload (quite the contrary actually). -- You received this message bec

Execution order of onModuleLoad and body.onload

2011-04-03 Thread christoph.die...@googlemail.com
I am a bit confused by GWT's documentation of its bootstrap order: http://code.google.com/webtoolkit/doc/latest/DevGuideOrganizingProjects.html#DevGuideBootstrap which says or at least suggests that onModuleLoad is called before body.onload: 10. externalScriptOne.js completes. The document is ready

Re: Vertical Tab Bar

2011-04-03 Thread Jan Mostert
As far as I'm aware, there's only a horizontal tab panel, building a vertical one with a vertical panel and labels can easily be accomplished. -- Jan Vladimir Mostert BEngSci MyCee Technologies On Sat, Apr 2, 2011 at 2:36 AM, New GWT User wrote: > Hi > > I am new to GWT, Trying to get hands di

How can I embed a no-sql graph db into my GWT app(Neo4j)

2011-04-03 Thread jonty
Hi, I've been using neo4j an embed graph db(relationships, properties, and nodes(very useful)). It's working fine as a stand alone project(separate to my gwt app). I'm now trying to integrate it into my gwt project. I'm saving the db in the war folder, war/fyp1.1/ neo4jdb. I'm using it to find shor

Re: GWT + MVP + Spring + Hibernate

2011-04-03 Thread Jan Mostert
ROO is "just" a console that generates a scaffold for you containing Spring-MVC code with a JPA (Hibernate) and then you can slap any UI on top of it, like GWT using the "gwt setup command" This page will take you through it step by step: http://www.springsource.org/roo/start Once you've done the

Re: GWT + MVP + Spring + Hibernate

2011-04-03 Thread Zaur Guliyev
Isn't there a step-by-step tutorial at least on GWT + Spring Roo ?! ... I've searched on Google but can'T find any resource..even only Spring Roo will suit...Do you have any suggestion? And one more question, do I have to start with Spring MVC first? Or are Spring Roo and Spring MVC different subj

Re: GWT + MVP + Spring + Hibernate

2011-04-03 Thread Ashton Thomas
this repo has gwt mvp spring but uses mybatis so no Hibernate: https://github.com/ashtonthomas/beans On Apr 3, 1:27 am, Jan Mostert wrote: > Spring Roo will integrate all that stuff for you. > > -- > Jan Vladimir Mostert > BEngSci > > MyCee Technologies > > > > > > > > On Sat, Apr 2, 2011 at 11:

Guidelines for RequestFactory Security/Authentication

2011-04-03 Thread Eric
Hi. I'm trying to implement Spring security over RequstFactory with GWT2.1 After some searching I've found some posts on this list but they're missing some explanation. In all the examples I could find I could see people writing the login page in JSP and I was wondering if the this is the only opt

Logging via mvn integration-test or in eclipse test-run

2011-04-03 Thread Andi
hi, we have logging configured to work well in dev-mode. really nice. but as i like to develop more complex things in integration-tests, i wonder how to get logs working there. in eclipse, via "run as gwt junit" i can see all GWT.log outputs. thats ok, but not what i want since the output and

Re: shuttle component

2011-04-03 Thread agi
you can use external drag and drop library and follow example which you can see here: http://allen-sauer.com/com.allen_sauer.gwt.dnd.demo.DragDropDemo/DragDropDemo.html#DualListExample hth agata On Apr 2, 12:49 pm, El Mentecato Mayor wrote: > No, but it's very easy to create one. > > On Mar 30,

Re: Testing performance: widgets vs elements+bubble, widgets win?

2011-04-03 Thread Gal Dolber
I made the tests on macos, I will try a micro benchmark. Thanks! On Sun, Apr 3, 2011 at 6:12 AM, Thomas Broyer wrote: > Have a look at the commit log for > http://code.google.com/p/google-web-toolkit/source/detail?r=9925 > Also, System.currentTimeMillis() (which uses (new Date).getTime() in > Ja

Re: Testing performance: widgets vs elements+bubble, widgets win?

2011-04-03 Thread Thomas Broyer
Have a look at the commit log for http://code.google.com/p/google-web-toolkit/source/detail?r=9925 Also, System.currentTimeMillis() (which uses (new Date).getTime() in JavaScript) only gives relevant results on non-Windows platforms: http://mivankovic.blogspot.com/2011/03/research-results-can-ja