Re: help : app engine datasource

2012-05-09 Thread Akram Moncer
thanks, i try the Eager fetch and it generate a warning but it works great. 2012/5/9 Patrick Julien pjul...@gmail.com [image: Boxbe] https://www.boxbe.com/overview google-web-toolkit@googlegroups.com is not on your Guest Listhttps://www.boxbe.com/approved-list| Approve sender

Help: GWT , RequestFactory with SQLServer ???

2012-05-09 Thread laxman lingampally
Hi all, please help me out asap, i have a question it is passible GWT, RF(RequestFactory) with any database ( not Google Datastore GAE GQL ,google cloud)? i have doubt it is passible or not ? Thanks Regards laxman. -- You received this message because you are subscribed to the Google

Re: Help: GWT , RequestFactory with SQLServer ???

2012-05-09 Thread Jens
Sure its possible. GWT/RF does not make any assumptions about the database you are using. -- J. Am Mittwoch, 9. Mai 2012 11:18:21 UTC+2 schrieb laxman lingampally: Hi all, please help me out asap, i have a question it is passible GWT, RF(RequestFactory) with any database ( not Google

Re: Help: GWT , RequestFactory with SQLServer ???

2012-05-09 Thread laxman lingampally
Hi Thanks for the quick reply!! thnaks a lot i am trying to working on using GWT/RF and SQLServer with Hibernate, my web application runing is fine but i am trying connect to sql server database at that time i got exceptions that exception i given below: Exception: * * *

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: Can the GWT eclipse validator be threaded to more than one class at once?

2012-05-09 Thread Patrick Julien
the current implementation On Tuesday, May 8, 2012 11:51:20 PM UTC-4, Brandon Donnelson wrote: What would stop it doing its job concurrently? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

GWT, Spring when projects are split apart (client, services, persistence)

2012-05-09 Thread Christien Lomax
Hi All, We could use a bit of insight and help if anyone has a moment. We currently have a project that is quite huge (thousands of classes) including the GWT client, a spring service layer and hibernate persistence layer. We are trying to split up the project into more manageable pieces

Re: GWT, Spring when projects are split apart (client, services, persistence)

2012-05-09 Thread Jens
How do you compile your app? Maven? Ant? In Eclipse using GPE? You have to make sure that the GWT compiler's classpath contains all needed source files (= add src/main/java of all projects that need to be compiled by GWT to the compilers classpath). -- J. -- You received this message because

Re: GWT, Spring when projects are split apart (client, services, persistence)

2012-05-09 Thread Thomas Broyer
On Wednesday, May 9, 2012 3:15:29 PM UTC+2, Christien Lomax wrote: Hi All, We could use a bit of insight and help if anyone has a moment. We currently have a project that is quite huge (thousands of classes) including the GWT client, a spring service layer and hibernate persistence

FilteredActivity

2012-05-09 Thread Thomas Lefort
Hi, I have the following issue: I use a FilteredActivityMapper with the following filtering: @Override public Place filter(Place place) { if(// check user is logged in) { return new EIRegisterPlace(, place); } return place; } Filtering works well except that when the

Re: How to determine CellTable row height?

2012-05-09 Thread Andrei
If your data never wraps within a cell, then the height of the row is always the same - it is determined by the CSS. (As a sidenote, you can change it in your CSS, or even apply different heights to different tables). Else, 1. The height changes as data wraps within a cell. Thus, you can't know

Re: FilteredActivity

2012-05-09 Thread Jens
Any idea if this normal (that the place doesn't change to EIRegisterPlace)? Yes thats normal. A FilteredActivity allows you to change activities for a given place by temporary converting the current place to a different one to trick the underlying ActivityMapper. So its not meant to

Re: 2 RequestFactory with 2 differents Proxy on the same domain class

2012-05-09 Thread Thomas Broyer
Yes, please file a bug for that. If you can contribute the patch to gwt-code-reviews.appspot.com it'd be even better (see https://developers.google.com/web-toolkit/makinggwtbetter#contributingcode) As far as the patch goes, your processing loses the most-to-least-derived type ordering of the

Re: FilteredActivity

2012-05-09 Thread Thomas Lefort
Brilliant, that does work indeed! Thanks. On Wednesday, 9 May 2012 16:45:10 UTC+2, Jens wrote: Any idea if this normal (that the place doesn't change to EIRegisterPlace)? Yes thats normal. A FilteredActivity allows you to change activities for a given place by temporary converting the

Re: FilteredActivity

2012-05-09 Thread Jens
No problem, but keep in mind that you now have two browser history entries which are both the same. So you should not use this throughout your app if you need to reload things otherwise the browsers back/forward buttons would feel odd. For login its probably ok. -- You received this message

Re: GWT ValueProxy and RequestFactory Domain Type error

2012-05-09 Thread jmbz84
Yes I have already declared the ProxyFor @ProxyFor(value = BrowserDetailItem.class, locator = BrowserDetailItemLocator.class) On 8 mayo, 15:18, Brandon Donnelson branflake2...@gmail.com wrote: Have you tried setting your @ProxyFor(BrowserDetailItem.class)? I haven't configured my proxies

Re: GWT, Spring when projects are split apart (client, services, persistence)

2012-05-09 Thread Christien Lomax
Hi Thomas, First, I want to say that your examples and blogs have helped us a lot over the last year! Thanks! Secondly, thanks for the super quick reply! I added the sources generation to the POMs for the Shared, Persistence and Services projects, and fixed the .class issues. However, we

Re: GWT, Spring when projects are split apart (client, services, persistence)

2012-05-09 Thread Christien Lomax
Eclipse, using m2e. All our projects are maven based. Source is specified as Thomas has outlined (source-jars added to POM). /c On Wednesday, 9 May 2012 10:46:37 UTC-3, Jens wrote: How do you compile your app? Maven? Ant? In Eclipse using GPE? You have to make sure that the GWT compiler's

Re: How to determine CellTable row height?

2012-05-09 Thread Mike Dee
Andrei, That's a good response. I think you convinced me to not do it. Instead, I wonder if it is possible to do something like what other web apps do (Twitter and even the new GWT google group), which is to keep adding rows as one scrolls down. I've experimented with range change event

Re: Can the GWT eclipse validator be threaded to more than one class at once?

2012-05-09 Thread Brandon Donnelson
Hypothetically then, do you think it could be done concurrently with out to much trouble? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: GWT ValueProxy and RequestFactory Domain Type error

2012-05-09 Thread Brandon Donnelson
Have you tried it with out the locator annotation like I noted in my example? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/tOBm_piddnkJ. To

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

Re: GWT 2.4 editor framework ui for create weak one2many relation

2012-05-09 Thread Human izatara
thanks for your attention Brandon ! I didn't understand your first way completely. I don't use App engine. our application use spring and jpa and I use eclipse and currently we run application on jetty. in our previous application, we used jsf and we could implement such scenarios for entities

[gwt-contrib] Re: Issue 7231: Speed-up SimpleRequestProcessor wrt ValueProxies (issue1660803)

2012-05-09 Thread skybrian
Um, help? Even after studying it for a while, I'm finding the RequestFactory implementation to be rather opaque. https://gwt-code-reviews.appspot.com/1660803/diff/1/user/src/com/google/web/bindery/requestfactory/server/SimpleRequestProcessor.java File