gwt-ckeditor V0.4

2010-03-20 Thread Damien Picard
Hi, A new gwt-ckeditor release is available : v0.4 Changes - Add form interoperability - Add setText() support event if the editor isn't attached - replace setText and getText by setHTML and getHTML (setText and getText are deprecated) - Add tabIndex support Issues

real web apps with gwt + push framework

2010-03-20 Thread mariyan nenchev
Hi, Could you point me to some real web apps that are developed with gwt and use push technology. By pushing i mean streaming data to the browser every second (very frequently). I need to choose some push framework, but not all are suitable for very frequent updates (3-5 updates per sec). I used

Re: Google Plugin for Eclipse 1.3 ignores WTP web directory

2010-03-20 Thread Pepe
I just tried the new 1.3.1 version and it works fine now. I got the following exception on the first try though java.lang.NoSuchMethodError: org.eclipse.jdt.internal.compiler.lookup.ProblemReferenceBinding.closestReferenceMatch()Lorg/ eclipse/jdt/internal/compiler/lookup/ReferenceBinding;

Re: New LayoutPanels (DockLayoutPanel) need Standard Mode ???

2010-03-20 Thread jd
On Mar 19, 9:30 pm, pau2bk i...@dpaul.de wrote: Using GWT 3.0.1 The problem is that you are writing to us from the future but we are still in 2010. I think you probably have an error in your html that stops you page working in standards mode. It works for me and others with the doctype:

Re: real web apps with gwt + push framework

2010-03-20 Thread Christian Goudreau
Take a look at the project Gwt-Comet. I think you'll find what you're searching for with that. Christian On Sat, Mar 20, 2010 at 6:13 AM, mariyan nenchev nenchev.mari...@gmail.comwrote: Hi, Could you point me to some real web apps that are developed with gwt and use push technology. By

Re: real web apps with gwt + push framework

2010-03-20 Thread Richard
Thanks Christian, As the author of gwt-comet I can tell you I'm using it to push hundreds of messages a second to each of hundreds of browsers with very low latency. From Richard. On Mar 20, 11:10 pm, Christian Goudreau goudreau.christ...@gmail.com wrote: Take a look at the project Gwt-Comet.

Re: real web apps with gwt + push framework

2010-03-20 Thread mariyan nenchev
Hi, thanks for the quick responses. I tried demos with apmosphere and it looks really impressive. I don't really know what atmosphere is but i will find out :). This seems to be the best choice for my needs. Regards. -- You received this message because you are subscribed to the Google Groups

Problem when using datastore with Tomcat

2010-03-20 Thread duclm
I deploy a Gwt app that using GAE (datastore), hosted mode is ok, but when i deploy to Tomcat, there is problem like below: Mar 20, 2010 11:05:56 PM org.datanucleus.plugin.NonManagedPluginRegistry resolve Constraints INFO: Bundle org.datanucleus.jpa has an optional dependency to org.datanucleu

UIBinder: Adding event handler for tab change

2010-03-20 Thread spacejunkie
Hi, I'm using UIBinder to define tabbed layout. Each tab and its header is also defined in the XML. The g:tab element holds a custom composite for each tab. I want to lazily populate the composite - held by a tab - with data when the tab is selected. For this I want to add event handler for tab

Grid uibinder

2010-03-20 Thread gadaleta.marco
Can anyone help me to use grid widget inside uibinder? Thx Marco -- 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: GWT and Acegi

2010-03-20 Thread olivier nouguier
Hi, Called now Spring security now. The simplest integration is to secure the hosting page (before GWT). You could look http://code.google.com/p/orcades-gwt-spring/ to see how to integrate spring security in a GWT / MVP application and be able to secure at GWT-RPC level. HIH On Fri, Mar 19,

Re: Grid uibinder

2010-03-20 Thread Tristan
someone said this here before, but it might be easier to use g:HTMLPanel table tr etc... /g:HTMLPanel On Mar 20, 11:45 am, gadaleta.marco gadaleta.ma...@gmail.com wrote: Can anyone help me to use grid widget inside uibinder? Thx Marco -- You received this message because you are

Re: UIBinder: Adding event handler for tab change

2010-03-20 Thread Tristan
don't know if this will work, but have you tried g:tab ui:field='myTab1' then in your java code @UiField UIObject myTab1 @UiHandler(myTab1) public void onSpellCast(ClickEvent event){ ... do stuff } On Mar 20, 11:30 am, spacejunkie priyank.pa...@gmail.com wrote: Hi, I'm using UIBinder

Re: Problem when using datastore with Tomcat

2010-03-20 Thread Tristan
I hate to make it sound like is it plugged in?, but don't you need to run the app on Google App Engine to access the datastore? (or hosted mode, which fakes app engine for you). Or did you somehow fake a datastore on your own? On Mar 20, 11:06 am, duclm duclm...@gmail.com wrote: I deploy a Gwt

Re: Selenium RC and OutOfMemory DevMode error

2010-03-20 Thread Tristan
No resolution on out of memory issue. I ended up hosting a development version on app engine and running my selenium tests against that. On Mar 19, 12:13 pm, Nathan Wells nwwe...@gmail.com wrote: I get similar problems, but they are related to restarting the server, rather than refreshing the

panel set width with percentage

2010-03-20 Thread JD
Hi, I have a series of panels as follows: HorizontalSplitPanel whose right widget is a VerticalSplitPanel (creating three panes in total). The HorizontalSplitPanel is placed inside a DecoratorPanel. I would like to set the total width and height of this whole thing to stretch 100% of the

Re: UIBinder: Adding event handler for tab change

2010-03-20 Thread spacejunkie
g:tab does not take have a ui:field attribute I found this in TabLayoutPanel's javadoc: The children of a TabLayoutPanel element are laid out in g:tab elements. Each tab can have one widget child and one of two types of header elements. A g:header element can hold html, or a g:customHeader

gwt 2.0.3 - Uibinder for Grid

2010-03-20 Thread Karthik K
I am looking for a uibinder example for the grid element . Searched through the archives before and came across a solution involving , g:HTMLPanel table ... /table /g:HTMLPanel. Is there a cleaner / out-of-the-box solution towards that other than hardcoding html by ourselves ? -- You

Class Observer/Observable not emulated

2010-03-20 Thread jcb
I am very satisfied with gwt, and I am making a simple gwt app with just client side code. I want to separate model and view, so I wanted to use the simple Observer/Observable classes of java.util but it is not emulated in GWT (cf. references). Someone know why these classes are not emulated ?

Receiving Plugin failed to connect to hosted mode server 127.0.0.1:9997 Error

2010-03-20 Thread JulianK
Hi all, i'm frustrated. I'm using Eclipse and the GWT Plugin for Eclipse. I created a new GWT Project with the GWT example files in it. after successfully creating it i start it via Run as Web Application and get an Error: Plugin failed to connect to hosted mode server 127.0.0.1:9997 i also

Re: FileUpload widget trouble

2010-03-20 Thread gpan...@gmail.com
FormPanel only takes a single widget (its a subclass of SimplePanel). You have to add your form widgets to a single sub-panel (eg: FlowPanel) and then add that to FormPanel. Oh, BTW, I'm having the same problem w/ FileUpload. No file data gets sent to the server. Sounds like a bug in GWT to me.

Re: Inter-frame communication

2010-03-20 Thread Olivier Monaco
Hi, I'm working on a front with a global portal as a placeholder for applications. Each application is an independent GWT module opened in an iframe. The portal and all applications can talk one to each other. Each application can send messages to the portal about it state (working, title...).

Two generator questions

2010-03-20 Thread PhilBeaudoin
I'm trying to write my first GWT generator... I've gotten pretty far, but I have the following questions: 1) Is there any way to see the generated class for debugging purposes? For example, can I force GWT to produce the .java file for my generated class (it did it once when I had an error, but I

Re: How to switch the center view of DockLayoutPanel?

2010-03-20 Thread zggame
Thank you very much. That is a good idea. I found SimplePanel does not interact well with DeckLayoutPanel in term of sizing. I switch to LayoutPanel and it works better. On Mar 16, 10:55 am, ome max.okoro...@gmail.com wrote: Well, I did it like this. 1. In LayoutView.ui.xml I have a

Re: GWT 2.0.3 + Maven2 + Eclipse

2010-03-20 Thread zggame
I am fairly new to maven. I might miss something in their description. Do you just need to change gwt.version1.6.4/gwt.version to 2.0? thanks. Sincerely Zhu, Guojun On Mar 18, 3:45 pm, Piotr Jaroszyński p.jaroszyn...@gmail.com wrote: On 18 March 2010 19:28, Sergio s3rgio...@gmail.com wrote:

update widget on panel

2010-03-20 Thread JD
I have an AbsolutePanel with dynamically added widgets. When I click on one of these widgets, another panel will display some properties of that widget. On this property panel there are elements to change some of the textual info displayed on the widget and a button to update it. The event of the

Re: Two generator questions

2010-03-20 Thread Gal Dolber
Ok, To view the generated class compile with -gen /somepathonyourdisk, another tip to debug a generated class: include in your lookup entries the folder where the generated classes are and you will be able to step through the generated code. And to use gin into your generated class I didn't

Re: Two generator questions

2010-03-20 Thread PhilBeaudoin
Thanks Gal, it really helped! I'm not quite sure I know how to include a folder in my lookup entries. Is this something I can do in Eclipse debugger? The idea of using the injector directly didn't quite work, because I need my generated class to be instanciated .asEagerSingleton(). If I try

Re: MVP related question

2010-03-20 Thread Dhiren Bhatia
I narrowed it down to the interface that is the 'client side stub' of the servlet that receives the RPC calls. It makes sense because the servlet implements this interface. Is it best practice to move this interface to the shared package then? Thanks! Dhiren On Mar 19, 12:10 am, Alexander

[gwt-contrib] IE9 preview support ?

2010-03-20 Thread nicolas.deloof
Hi, I tried my GWT 2.0 webapp with the recent test build of IE9 and it doesn't display. I wonder IE9 is not recognized as IE, event whit IE8 mode set. The browser may use a unsuported user-agent ID, is there allready any test done on this new browser ? roadmap to support its better support for

[gwt-contrib] [google-web-toolkit] r7753 committed - Tweaks to eclipse instructions...

2010-03-20 Thread codesite-noreply
Revision: 7753 Author: rj...@google.com Date: Sat Mar 20 12:58:26 2010 Log: Tweaks to eclipse instructions Review at http://gwt-code-reviews.appspot.com/242801 Review by: jlaba...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=7753 Modified:

[gwt-contrib] [google-web-toolkit] r7754 committed - Checkstyle: snip unused import

2010-03-20 Thread codesite-noreply
Revision: 7754 Author: gwt.mirror...@gmail.com Date: Sat Mar 20 20:22:29 2010 Log: Checkstyle: snip unused import http://code.google.com/p/google-web-toolkit/source/detail?r=7754 Modified: /trunk/bikeshed/src/com/google/gwt/bikeshed/list/client/SimpleCellList.java

[gwt-contrib] No more massive copy paste between our request (issue250801)

2010-03-20 Thread rjrjr
Reviewers: amitmanjhi, Description: No more massive copy paste between our request objects. Introduces the abstract classes for RequestFactory and its request object. Also some clean up to make it more clear what classes will come from GWT code generators and what will come from pre-compilation

[gwt-contrib] Re: No more massive copy paste between our request (issue250801)

2010-03-20 Thread rjrjr
http://gwt-code-reviews.appspot.com/250801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors To unsubscribe from this group, send email to google-web-toolkit-contributors+unsubscribegooglegroups.com or reply to this email with the words REMOVE ME as the subject.