Errai Experience?

2012-08-13 Thread Ed
What is your experience with RedHat Errai ( http://www.jboss.org/errai/) It uses GWT to build rich web app's. Is it mature?..., too early to jump in, ... ? anybody used it in real projects?... JS output overhead ?... - Ed -- You received this message because you are subscribed to the Google Gr

Re: How to implement Enter Key Submit Form in GWT

2012-08-13 Thread djjeck
You can use KeyCodes.KEY_ENTER instead of 13, for clarity On Friday, February 25, 2011 2:59:48 PM UTC+1, El Mentecato Mayor wrote: > > If you want to do it when a PasswordTextBox is on focus for example > (this is from my sign-in page): > > passwordTextBox.addKeyPressHandler(new KeyPressHand

How to get wrappered body element within RichTextArea?

2012-08-13 Thread Alex Luya
RichTextBox has such dom level hierarchy: //I need to manipulate this body element I found setting style name to iframe doesn't work,and It must be set to body element. I tried to do

Re: Error in IE 8 while implementing RichTextArea for cross domain scripting

2012-08-13 Thread the.wizard
anyone can help me? still no luck with this problem... On Monday, August 13, 2012 10:29:32 AM UTC+7, the.wizard wrote: > > Hi everyone, > I really need help for this problem... Currently I need to do some cross > site scripting.. I have the first application hosted in domain > first.applicatio

Re: GWT-Bootstrap 2.0.4.0 was released

2012-08-13 Thread Juan Pablo Gardella
Thanks Great Work Ohashi 2012/8/13 Ohashi, Keisuke > Hi all. > > Additional Information. > > gwt-bootstrap come on the maven central repository now. :-) > > > http://search.maven.org/#artifactdetails%7Ccom.github.gwtbootstrap%7Cgwt-bootstrap%7C2.0.4.0%7Cjar > > Regards. > > -- > keisuke ooha

Re: GWT-Bootstrap 2.0.4.0 was released

2012-08-13 Thread Ohashi, Keisuke
Hi all. Additional Information. gwt-bootstrap come on the maven central repository now. :-) http://search.maven.org/#artifactdetails%7Ccom.github.gwtbootstrap%7Cgwt-bootstrap%7C2.0.4.0%7Cjar Regards. -- keisuke oohashi -- You received this message because you are subscribed to the Google Gro

Re: display GWT dialog when a link is clicked in jsp

2012-08-13 Thread Thad
You can define a bookmark within your app then use that bookmark as the anchor within your other page. And the other page needn't be a JSP--it can be static HTML, or generated by a JSP, servlet, CGI, etc. On Wednesday, August 8, 2012 5:32:32 PM UTC-4, James wrote: > > I have already used GWT to

Re: Hibernate session in RequestFactory

2012-08-13 Thread Thomas Broyer
Session != transaction. You're supposed to use a single session per request but one transaction per service method. -- 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/ms

Re: window scrolls to top afte closing PaopupPanel

2012-08-13 Thread Thad
I've not seen this behavior. Perhaps if you provided more information or a code snippet? What version of GWT? In which browsers? What are the autoHide and modal settings for the panel? On Sunday, August 12, 2012 12:44:13 PM UTC-4, Deepak Singh wrote: > > Hi All, > > I have a popup panel and am s

Re: GWT > 2.0.0 DevMode: Strange warning when RPC with some object as parameter

2012-08-13 Thread Chak Lai
I am assuming you are using GWT SDK In the Ant file build.xml, don't forget to update the path of GWT. You may also need to validation-api-1.0.0.GA.jar, validation-api-1.0.0.GA-sources.jar point to the right location. Just create a new project using 2.4.0, and compare the build.xml with

Re: request factory list of children behavior when persist()

2012-08-13 Thread Yan
This seems to have something to do with my Child entity proxy in turn contains a collection of ValueProxy object. And, if the child proxy does not have any valueproxy object, then I see this behavior (i.e., request factory sends in NULL instead of the object). Thanks, Yan -- You received thi

Re: Big MultiWordSuggestOracle

2012-08-13 Thread ashwin.desi...@gmail.com
Check out https://groups.google.com/forum/m/?fromgroups#!topic/google-web-toolkit/VpQq_gxATYY On Aug 13, 2012 11:25 PM, "James" wrote: > I get a long list of records (2) for MultiWordSuggestOracle from > database. The page containing SuggestBox takes very long time to load. I > can add its i

request factory list of children behavior when persist()

2012-08-13 Thread Yan
Hi there, I am having a hard time to understand this. One Entity Proxy (parent) contains a list of other Entity Proxy (children). I build bi-directional relationship in JPA. On client side, I get a list of children and then immediately enable edit in RF, and send it to backend to persist.

Re: window scrolls to top afte closing PaopupPanel

2012-08-13 Thread Deepak Singh
Any suggestion how can i achieve this ? On Sun, Aug 12, 2012 at 10:14 PM, Deepak Singh wrote: > Hi All, > > I have a popup panel and am showing some content inside it with scrolling > enabled inside popupPanel. > > Now the problem i am facing is that, > after closing popupPanel(once it hides), th

Big MultiWordSuggestOracle

2012-08-13 Thread James
I get a long list of records (2) for MultiWordSuggestOracle from database. The page containing SuggestBox takes very long time to load. I can add its implementation to onLoad method but it still interferes some data inputs. Is there some way to load partial data for MultiWordSuggestOracle f

Re: Hibernate session in RequestFactory

2012-08-13 Thread bond
Hi guys, I'm using request factory with single Hibernate session per request using FilterServlet implementation as described here http://stackoverflow.com/questions/4988397/gwt-requestfactory-how-to-use-single-entitymanager-per-request. These are the two classes: public class ThreadLocalHibernat

Re: Ideal procedure to be followed to build a complex application in GWT

2012-08-13 Thread Joseph Lust
Your questions is far too broad. What facets of enterprise development with GWT do you want to know about? Sincerely, Joseph -- 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

Re: CellTable - how to reload data?

2012-08-13 Thread Milan Cvejic
Hi Magnus, you can use setVisibleRangeAndClearData method. More information you can find here: http://google-web-toolkit.googlecode.com/svn/javadoc/2.1/com/google/gwt/user/cellview/client/AbstractHasData.html#setVisibleRangeAndClearData%28com.google.gwt.view.client.Range,%20boolean%29 Cheers, M