Re: GWT Loading the application very slowly

2010-11-06 Thread keyboard_samurai
No I cannot use it as I am using GWT 1.7.1 not the 2.x version.. This is what is making this task more challenging now .. On Nov 6, 10:58 am, zixzigma zixzi...@gmail.com wrote: Have you tried Code Splitting ?http://code.google.com/webtoolkit/doc/latest/DevGuideCodeSplitting.html are you

Re: GWT+Roo a few days later

2010-11-06 Thread zixzigma
is there a way to tell Roo to just generate Places or just Presenters ? instead of everything ? the thing is with CRUD part of app, there is a mapping between Entities(entityproxies) and Places/Activity/Presenters. but there are times that many entities need to collaborate to present the

Re: Error in generating report

2010-11-06 Thread Didier DURAND
Hi Bruno, Remove the flush(): your duty is to fill up the stream with the content to deliver . Later on, the servlet handler to which you give the response (incl the stream) back will flush it back to the browser. regards didier On Nov 5, 8:01 pm, Bruno Santos bruegosan...@gmail.com wrote:

Re: How to diagnose IE8 javascript error stack overflow at line: 0? ends up in Impl.entry0

2010-11-06 Thread Didier DURAND
Hi, I don't know enough about your appl but we had similar issues: that was due to complex data structures that we were bringing back to the client from the server over the GWT RPC - we had to simplify the structures (carrying simple arrays of objects rather than complex graphs over RPC) in order

newbie trying to use htmlunit gwt 2.1 to test greet example

2010-11-06 Thread Ray Tayek
hi, i am trying to use htmlunit to test the greeting service that gets generated in eclipse when you make a new web application project. i am trying to find the send button in the project. i tried some of the suggestions at http://htmlunit.sourceforge.net/faq.html#AJAXDoesNotWork, but all of

Re: GWT Designer and Data Binding

2010-11-06 Thread csaffi
Thank you Jeff, how could it help me with data binding of UI components? -- 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 group, send email to

Re: Error in generating report

2010-11-06 Thread Bruno Santos
Thanks for the reply Didier, I removed the flush(), but the error persists. -- 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 group, send email

Re: Gwt 2.1 Activities + Code splitting + Gin

2010-11-06 Thread Thomas Broyer
On 6 nov, 01:24, Nicolas Antoniazzi nicolas.antonia...@gmail.com wrote: Hello, I am trying to use CodeSplitting with Activites on 2.1. I read this very interresting threadhttp://code.google.com/p/google-web-toolkit/issues/detail?id=5129and T.Broyer says that the best approach is to use an

Re: FocusPanel with nested focusable elements

2010-11-06 Thread Thomas Broyer
On 2 nov, 15:48, Carlos Aguayo carlos.agu...@gmail.com wrote: Hi, If I have something like this: g:FocusPanel ui:field=main   g:FlowPanel     g:TextBox ui:field=textfield1 /     g:TextBox ui:field=textfield2 /   /g:FlowPanel /g:FocusPanel Where I have elements that are focusable

Re: GWT Designer and Data Binding

2010-11-06 Thread Jeff Larsen
The gwt-designer isn't like WPF or other binding options. For a concrete example import the dynatablerf example into eclipse and take a look at how the code works. Say you have a bean Person{ String firstName; String lastName; //getters setters ommitted for brevity } then you make a

intellij: ...DevMode -war strange path -gen strange path

2010-11-06 Thread notcourage
I'm trying to get samples/Hello to run in intellij 9.0.3. When I run gwt dev mode within intellij, chrome reports Hello.html isn't found. I set the project structure to generate out/artifacts/ Hello_web_exploded. I believe Hello.html isn't found due to this command line fragment (entire line

GWT Designer and Widget States

2010-11-06 Thread branflake2267
I'd like to suggest the widget Designer add a way to design widget states. Right now you design in one state. If you like at the flash development, it can control the widget or app in different states according to time and/or events. This would be a fantastic feature(s) to add to GWT Designer. I

Re: GWT Loading the application very slowly

2010-11-06 Thread keyboard_samurai
I am sure ppl might have encountered such issues with GWT 1.7.1. Let me know if u have any idea for this On Nov 6, 11:02 am, keyboard_samurai yog...@gmail.com wrote: No I cannot use it as I am using GWT 1.7.1 not the 2.x version.. This is what is making this task more challenging now ..

GWT - Generated Class MyClassName_FieldSerializer.java

2010-11-06 Thread Rodrigo Teixo
Hello, I trying to compile a module and it goes for a error in a generated file MyClassName_FieldSerializar that I havent control over it. It gives a error in line 20 but there is no problem in this line eitheir in the entry-point class or the class metioned in the error message. The class

Element type set-property-name must be followed by either attribute specifications

2010-11-06 Thread leslie
Eclipse Helios 3.6 JEE Java 1.6.0_22 GWT 2.1 Mac OS X 10.5.8 I'm attempting to use the Logging feature available in GWT 2.1 and I'm having trouble. I have the following file for a module ?xml version=1.0 encoding=UTF-8? module rename-to=view inherits name=com.google.gwt.user.User /

Dynamic EntityManagerFactory creation and RequestFactory service stubs problem

2010-11-06 Thread Jack
Hi, we would like to integrate GWT 2.1 RequestFactory in our application. Our application's backend uses JPA and has one database per customer. So we have to tell our EntityManagerFactory which database it should use, depending on the customer who did the server request. Currently we have

Re: How to generate xhtml using GWT

2010-11-06 Thread Jan
Thank you -- 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 group, send email to google-web-toolkit+unsubscr...@googlegroups.com. For more

Re: Element type set-property-name must be followed by either attribute specifications

2010-11-06 Thread Thomas Broyer
On 6 nov, 17:40, leslie web...@me.com wrote: Eclipse Helios 3.6 JEE Java 1.6.0_22 GWT 2.1 Mac OS X 10.5.8 I'm attempting to use the Logging feature available in GWT 2.1 and I'm having trouble. I have the following file for a module ?xml version=1.0 encoding=UTF-8? module

Re: Element type set-property-name must be followed by either attribute specifications

2010-11-06 Thread leslie
Thank you so much Thomas! I couldn't even see that mistake I made! I think I will find this logging functionality very helpful today and I'm grateful to be able to keep going with it. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Re: Dynamic EntityManagerFactory creation and RequestFactory service stubs problem

2010-11-06 Thread Thomas Broyer
On 6 nov, 19:26, Jack mlsubscri...@gmail.com wrote: Hi, we would like to integrate GWT 2.1 RequestFactory in our application. Our application's backend uses JPA and has one database per customer. So we have to tell our EntityManagerFactory which database it should use, depending on the

Re: Gwt 2.1 Activities + Code splitting + Gin

2010-11-06 Thread Ashton Thomas
Does anyone have some words for implementing the AsyncProviderT (Still in trunk as Thomas points out)?? I have not see any code showing how to implement this so I am a little lost on where to start. How do we need to use AsyncProvider and what else needs to be change / restructure anything? Is

Re: Problem with maven-gwt-plugin and GWT 2.1

2010-11-06 Thread fclaeys
Hi. I currently have the same problem. Have you found a solution for this problem ? On 4 nov, 14:32, Deyan Atanasov root2...@gmail.com wrote: Hi. I'm getting the following exception when compiling my project with GWT 2.1. and maven-gwt-plugin 1.3-SNAPSHOT

GWT 2.1 on Netbeans 9.6.1

2010-11-06 Thread Gui
Hi, I've started a new netbeans project using GWT4NB that ive downloaded via the plugin manager. I've set my path to GWT 2.1 sdk path properly. The hello gwt project compiles with this appearing in my log in red: WARNING: 'com.google.gwt.dev.GWTCompiler' is deprecated and will be removed in a

GWT: problems with gwt-diagram-gwt, gwt-visualization and gwt-connectors

2010-11-06 Thread Victor Costa Santiago
Hello good day! I am new to the group and my English is not very good (I am Brazilian and -.-),i'm new to GWT and java. Well, I need to implement the service system so that when you click a button to open one within the window and should have a diagram on the system screens. for example:

Re: Fyi: Client side high performance computing project

2010-11-06 Thread Gal Dolber
I have to say that this is one of the greatest ideas I've ever heard. The best of lucks with it! On Thu, Nov 4, 2010 at 7:09 AM, Raphael André Bauer raphael.andre.ba...@gmail.com wrote: Hi, OUR IDEA: We want to make web browsers and their javascript engines to act as part of the largest

Show Hide Reorder Columns like adwords UI

2010-11-06 Thread ycol
Hi, I would like to know how to implement show, hide and reorder columns for a cellTable. I see the ability on the UI for the adwords/key word tool. There is a 'Columns' button on top of a datatable. Clicking the button allows the user to customize the columns. Thank you GWTNewbie -- You

Customising Roo generated GWT apps

2010-11-06 Thread Gary Rich
Hi, Please could you offer some advice on how to customise the user interface of a Roo generated GWT web app. I have managed to get both the expenses app and now an app based on my own legacy database running okay. Am also able to add and remove entities and fields successfully and have

GWT designer and problem with smartGWT

2010-11-06 Thread vasatko
Where is stored, that GWT module have smartGWT? Or how to set up address to the smartgwt.jar on existing module? I have module with smartGWT created in GWT Designer. But after reinstaling Eclipse and importing project, I have module and in google menu i have only Configure for using GWT Ext and

Is ti possible to load a module or call a Java method from a GWT panel content, like HTMLPanel?

2010-11-06 Thread pauld
I am trying GWT with a reporting tool - I can display an HTML generated by the reporting tool in an HTMLPanel added to a popup panel - that's easy. But now I need to add a drill through feature - display another report HTML when clicking on a link within the HTMLPanel. That's where everything

Re: Problem with maven-gwt-plugin and GWT 2.1

2010-11-06 Thread fclaeys
I currently have the same problem. Have you found a solution for this problem? On 4 nov, 14:32, Deyan Atanasov root2...@gmail.com wrote: Hi. I'm getting the following exception when compiling my project with GWT 2.1. and maven-gwt-plugin 1.3-SNAPSHOT fromhttp://nexus.codehaus.org/snapshots

GWT + MySQL

2010-11-06 Thread Ross McKinnon
Hi there, I've spent numerous hours this week trying to get my existing GWT application to connect with an existing MySQL database with no luck. I've created my code to connect to the database using JDBC and is kept in the server package to ensure it remains as java code. Also i have included

RequestFactory - Send error to client

2010-11-06 Thread Henrique F M
Hi there, I didn't find the solution to this anywhere, so I'm creating this new discussion. I want to be able to send errors from my RequestFactory to the client. Let me give an example: let's say my app is a simple Person CRUD. My Person class has a String name attribute and I don't want to

Re: Role based Security in GWT: how to implement ?

2010-11-06 Thread lammert
Also have a look at this topic at the Spring forums on which I've posted a possible (temporary) solution to use role based security for the RequestFactory: http://forum.springsource.org/showthread.php?t=95318 It also applies when not using Spring. -- You received this message because you are

Re: GWT + MySQL

2010-11-06 Thread Jeff Chimene
I doubt that your mySQL JDBC source code will correctly translate to JavaScript (You must have the source code to even start down this road). Even if it did, you probably won't have any of the supporting libraries on the client side. Instead, you use GWT's RPC mechanism to call routines on your

Re: Problem with maven-gwt-plugin and GWT 2.1

2010-11-06 Thread Jeff Larsen
Try upgrading to the new maven plugin 2.1 http://mojo.codehaus.org/gwt-maven-plugin/ On Nov 6, 1:55 pm, fclaeys claeys.fabr...@gmail.com wrote: Hi. I currently have the same problem. Have you found a solution for this problem ? On 4 nov, 14:32, Deyan Atanasov root2...@gmail.com wrote:

Re: Gwt 2.1 Activities + Code splitting + Gin

2010-11-06 Thread Nicolas Antoniazzi
Thanks Thomas, I implemented something similar to what you said (I think) and it works fine ! All my activities are code splitted automatically now. I used the AsyncProviderT. I used a gin version compiled by gwtp team that include the AsyncProxy (althouth that I do not use gwtp for severals

Re: Dynamic EntityManagerFactory creation and RequestFactory service stubs problem

2010-11-06 Thread Jack
Oh that sounds pretty nice. Haven't realized that its possible that way.. hehe..and its not nasty at all :) I'll give it a try. Thanks! And a second question that comes to my mind: When using RequestFactory our domain objects are only defined by interfaces. Is there a class in the framework that

GWT + JDO (GAE)

2010-11-06 Thread Caio
Hello, guys. I've been using JDO these weeks. I've followed the tutorial at GAE Docs, and I learned how to create and get entity objects. I've created a class 'User' for my system. This class has the attributes username(String), password(String), isOnline(boolean) and score(int). I've succeeded

Re: Dynamic EntityManagerFactory creation and RequestFactory service stubs problem

2010-11-06 Thread Jack
Ok it works like a charm with a custom RequestTransport and a custom header. Thanks for that tip! But RequestFactory docs should really mention what to add to web.xml and that you need a json implementation from json.org and a javax.validation implementation in your server classpath to make

Re: GWT 2.1.0 maven asks for com.google.gwt:gwt-dev:jar:windows:2.1.0??

2010-11-06 Thread Yaakov
Well, I tried that. It now fails with this in the testing phase: * [INFO] [gwt:test {execution: test}] [ERROR] java.lang.NoClassDefFoundError: com/google/gwt/dev/cfg/ Condition [ERROR] at com.google.gwt.junit.client.GWTTestCase.createStrategy(GWTTestCase.java: 355) [ERROR]

Re: Gwt 2.1 Activities + Code splitting + Gin

2010-11-06 Thread PhilBeaudoin
Hi Nicolas, If you start using AsyncProvider, you might be interested in GWTP's ProviderBundle at some point. The problem of AsyncProvider is that it may introduce too many split points, and you will often want to do some manual optimization and group a few things together behind the same split

GWT MVP ROO getBackButtonPlace()

2010-11-06 Thread zixzigma
can someone please explain what exactly is this? (in Roo generated GWT MVP code, expenses app) public Place getBackButtonPlace() { return ScaffoldMobileApp.ROOT_PLACE; } i see it in all generated Activities. why is there a reference to ScaffoldMobileApp ? normal

GWT MVP Roo - where are custom events and their handlers?

2010-11-06 Thread zixzigma
in MVP samples: Contact 1 and Contact 2, eventBus is used for communicating application level events. with eventBus, one part of application informs other interested parts of certain events, so they can take appropriate action. code: public class AddContactEvent extends

[gwt-contrib] [google-web-toolkit] r9194 committed - Add a glass panel to the root when moving the splitter in a...

2010-11-06 Thread codesite-noreply
Revision: 9194 Author: nikhilsing...@google.com Date: Fri Nov 5 20:43:20 2010 Log: Add a glass panel to the root when moving the splitter in a SplitLayoutPanel so that it catches mouse events over an iframe correctly. (This is just copied from the implementation in SplitPanel). Review by:

[gwt-contrib] Public: GWT version of the JSR 303 Bean Validation TCK (issue1085801)

2010-11-06 Thread nchalko
Reviewers: bobv, Description: Public: GWT version of the JSR 303 Bean Validation TCK So far only one test is wrapped, One test passses and one fails, but this shows the patern to use to get the tests going. The test failure is expected, and represent code that needs to be implemeted. Please

[gwt-contrib] Re: Public: GWT version of the JSR 303 Bean Validation TCK (issue1085801)

2010-11-06 Thread nchalko
http://gwt-code-reviews.appspot.com/1085801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors