Re: Creating clickable links within text

2013-05-22 Thread Thomas Broyer
On Tuesday, May 21, 2013 9:51:10 PM UTC+2, Joel wrote: I have a cell that contains some text. I would like to create links within the text that are clickable. For, example abc and xyz should be links. I figured on using InlineLabel to create the links within the text. However, since

Re: JPA issue: A parent cannot be established or changed once an object has been persisted.

2013-05-22 Thread Nermin
Dear Alfredo and Juan, obviously there is an hidden problem with my code i simply do not see. Could you please have a short look at these 3 classes (full code) and tell me what am I doing wrong here: https://dl.dropboxusercontent.com/u/2983671/JPA_Problem/JPA_Problem.zip Please note:

Re: gwt-maven-archetypes with multiple client modules

2013-05-22 Thread Thomas Käfer
how to launch the DevMode from within eclipse on a setup with seperate client server project like your maven-archetype modular-webapp, without using maven? I'm trying to find this already for a few weeks, but I did not find a solution yet. Problem with the maven gwt:run launch is, that the

Re: gwt-maven-archetypes with multiple client modules

2013-05-22 Thread Thomas Broyer
On Wednesday, May 22, 2013 12:09:44 PM UTC+2, Thomas Käfer wrote: how to launch the DevMode from within eclipse on a setup with seperate client server project like your maven-archetype modular-webapp, without using maven? I'm trying to find this already for a few weeks, but I did not

Re: drag and drop group

2013-05-22 Thread Jens
Haven't used GWT Drag and Drop yet but can't you just skip the code in your drag or drop handler if your group condition isn't true? -- J. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving

Re: gwt-maven-archetypes with multiple client modules

2013-05-22 Thread Thomas Käfer
Thanks for your reply, and thanks for the info! Have a working debug-able environment now! With this Debug As… → Web Application (running on an external server) on the client project, I get the error Could not find any host-pages in project name-client My setup is generated by your maven

Re: gwt-maven-archetypes with multiple client modules

2013-05-22 Thread Thomas Broyer
On Wednesday, May 22, 2013 1:08:38 PM UTC+2, Thomas Käfer wrote: Thanks for your reply, and thanks for the info! Have a working debug-able environment now! With this Debug As… → Web Application (running on an external server) on the client project, I get the error Could not find any

Re: JPA issue: A parent cannot be established or changed once an object has been persisted.

2013-05-22 Thread Juan Pablo Gardella
Show how you are persisting the entities. 2013/5/22 Nermin user...@gmx.de Dear Alfredo and Juan, obviously there is an hidden problem with my code i simply do not see. Could you please have a short look at these 3 classes (full code) and tell me what am I doing wrong here:

Build tree table with GWT CellTableBuilder

2013-05-22 Thread Ben
Is it possible to build a tree table like thishttp://www.sencha.com/examples/#ExamplePlace:basictreegridwith the new CellTableBuilder of vanilla GWT? https://lh5.googleusercontent.com/-oHWT1_E1_LY/UZzQ8WUvYlI/AAM/I8q4wxhkTt4/s1600/oqDJW.png The GWT Showcase

Build tree table with GWT CellTableBuilder

2013-05-22 Thread jaga
Hi, I managed this. I followed the example given on the latest GWT showcase for the custom data grid http://gwt.googleusercontent.com/samples/Showcase/Showcase.html#!CwCellTable Key is new TableRowBuilder. You can inject rows into the table. Use a Click event on a cell to trigger the

primer for mobile development

2013-05-22 Thread mike b
The company I work for just got a secure mobile app that has browser integration for the specific platform (iOS,android). We have an existing GWT app (several actually) that could have some convenient mobile features. Can someone provide direction on resources (articles, books, blogs, forum

Re: Creating clickable links within text

2013-05-22 Thread Joel
Thanks for the response. I made some progress, like you say the trick is mostly in processing the DOM in the onBrowserEvent. I also had the issue of the pointer/selection trying to be handled by the CellList, this requires un-styling it appropriately and turning off selection mode:

Re: drag and drop group

2013-05-22 Thread bhomass
conceptually, of course that is what you want to do. I tried disallow the drop from inside the onDragEnter and onDragOver events, but don't see any api to set the drag icon to disabled mode. I played with event.getDataTransfer().setDragImage(...), but it has no effect. On Wednesday, May 22,

Exception reporting is broken in GWT: would you support a kickstarter project to fix it?

2013-05-22 Thread Alex Epshteyn
One of the big problems with deployed GWT apps has always been the impossibility of tracing JavaScript exceptions back to the Java source code. What we need is a true equivalent of Java stack traces. There was an effort made by the GWT team a couple years ago to solve this problem (

Re: Offline debugging my gwt app

2013-05-22 Thread yves
Hello GWT-team guys ! Nobody has an idea at least if is it a bug or a feature? Thanks a lot for your help Yves -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails from it, send an email

Re: Exception reporting is broken in GWT: would you support a kickstarter project to fix it?

2013-05-22 Thread Jens
I dont think you will get paid for it, because: 1.) Its somewhat not in the spirit of open source software 2.) Your patch must go through review and there is no guarantee that it will be committed 3.) GWT will remove IE6/7 support soon and probably in 2014 also IE8 support. Also Opera moves to

Re: Exception reporting is broken in GWT: would you support a kickstarter project to fix it?

2013-05-22 Thread Alex Epshteyn
Thanks for your comment. Let me respond to your points: 1) I've seen this point discussed before, and the standard counter-argument is that the spirit of OSS is free as in freedom, not beer. Lots of developers get paid to work on OSS projects. 2) This is actually one of the reasons I'm

Re: Exception reporting is broken in GWT: would you support a kickstarter project to fix it?

2013-05-22 Thread Alex Epshteyn
Correction: when I said that a browser needs to support sourcemaps to generate accurate stack traces, that wasn't entirely accurate. What a browser needs to support is the stack property of exception objects, which provides a JavaScript stack trace with both line and column numbers. It's the GWT

Re: primer for mobile development

2013-05-22 Thread Mohammad Al-Quraian
I'm on the same train, I would like to get some guidance on mobile GWT. At least how to start on that. I'm doing my app in MVP pattern, so it would be great if it fits that. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe

Re: primer for mobile development

2013-05-22 Thread Ed
I use m-gwt http://www.m-gwt.com/ . You may want to run a device emulator to test on. Since it is a browser based environment, you can start with the desktop then test on devices. On Wed, May 22, 2013 at 6:56 PM, Mohammad Al-Quraian m4des...@gmail.comwrote: I'm on the same train, I would like

Re: primer for mobile development

2013-05-22 Thread Alain Ekambi
Well there s also Touch4j and Titanium4j if you wanna use GWT on mobile. Touch4j wraps Sencha Touch Titanium4j wraps Appcelerator Titanium. Disclaimer: I m one of the person behind both projects 2013/5/23 Ed ej19...@gmail.com I use m-gwt http://www.m-gwt.com/ . You may want to run a device

GWT project with maven

2013-05-22 Thread Srinivasa Rao
Hi , I am looking for the GWT project with the maven setup. Can you please provide me the link for the sample project ? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails from it,

Re: Can't deploy my project anymore

2013-05-22 Thread Jack Gage
Has anyone pinpointed the cause of this? I have tried to fix this with fresh installations of Eclipse Juno and Indigo with the GWT SDK and Designer plugins, have deleted the gwt-cache dirs, am using jre6, and yet the problem persists, very weird. What else bothers me about this is that I

show selected items after filter

2013-05-22 Thread Rauel
the 2 items selected before the filtering are not shown (as selected) in the ListGrid. So the user gets confused because he doesn't know that they are saved externally, so I would like to check them again for him. So that his view is consistent to what he already checked. I found the forum a

Re: GWT project with maven

2013-05-22 Thread Spear Timothy
There are a few examples on the web. Start here http://mojo.codehaus.org/gwt-maven-plugin/ On May 22, 2013, at 7:32 PM, Srinivasa Rao srinivasa.bodd...@gmail.com wrote: Hi , I am looking for the GWT project with the maven setup. Can you please provide me the link for the sample project ?

Re: primer for mobile development

2013-05-22 Thread mike b
Ed , thx for the reply. Can you point me to a device emulator? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: primer for mobile development

2013-05-22 Thread mike b
Nino , thx for the links. I will look into those. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To post

Re: Can't deploy my project anymore

2013-05-22 Thread Jeff Smith
I ran into the same problem and could not figure out which configuration setting got hosed. Fortunately for me, I had a backup on another computer and just reverted back to that project and GWT 2.5. That is one of the drawbacks of GWT--there is too much magic going on behind the scenes spread out

Re: GWT project with maven

2013-05-22 Thread Navin Surtani
Take a look here for source code for the basic HelloWorld example: https://github.com/steinsag/gwt-maven-example I used that as an example to follow while building my application. On Thursday, May 23, 2013 7:32:35 AM UTC+8, Srinivasa Rao wrote: Hi , I am looking for the GWT project with the

[gwt-contrib] Change in gwt[master]: Use JSON.parse() instead of eval() to deserialize rpc callba...

2013-05-22 Thread John Ahlroos
John Ahlroos has posted comments on this change. Change subject: Use JSON.parse() instead of eval() to deserialize rpc callback payload .. Patch Set 2: Brian: The main reason I put up this patch is that currently IE9 is

[gwt-contrib] Change in gwt[master]: Introduces generic Composite widgets.

2013-05-22 Thread Thomas Broyer
Thomas Broyer has posted comments on this change. Change subject: Introduces generic Composite widgets. .. Patch Set 3: (1 comment) Note that SuggestBox's event forwarding was deprecated in favor of exposing the internal

[gwt-contrib] Change in gwt[master]: Removes api-checker reference JARs from the source tree.

2013-05-22 Thread Thomas Broyer
Hello Matthew Dempsky, Leeroy Jenkins, I'd like you to reexamine a change. Please visit https://gwt-review.googlesource.com/2500 to look at the new patch set (#5). Change subject: Removes api-checker reference JARs from the source tree.

Re: [gwt-contrib] Integration Testing Idea

2013-05-22 Thread darkling235
Ok so having put everything together I think I have a plan. I'm thinking that the best approach would be to have a script that runs a cleanDB class before it runs each test (I can just java the test class to run it right?). It's not an ideal solution since this means I will only be able to

[gwt-contrib] Change in gwt[master]: Fixes ISSUE 7079 - Add support for the newer bindery Handler...

2013-05-22 Thread Julien Dramaix
Hello Matthew Dempsky, I'd like you to reexamine a change. Please visit https://gwt-review.googlesource.com/1350 to look at the new patch set (#2). Change subject: Fixes ISSUE 7079 - Add support for the newer bindery HandlerRegistration

[gwt-contrib] Change in gwt[master]: Fixes ISSUE 7079 - Add support for the newer bindery Handler...

2013-05-22 Thread Thomas Broyer
Thomas Broyer has posted comments on this change. Change subject: Fixes ISSUE 7079 - Add support for the newer bindery HandlerRegistration .. Patch Set 2: Code-Review+1 Hmm, so, UiBinder only supports event handlers that

[gwt-contrib] Change in gwt[master]: Removes api-checker reference JARs from the source tree.

2013-05-22 Thread Matthew Dempsky
Matthew Dempsky has posted comments on this change. Change subject: Removes api-checker reference JARs from the source tree. .. Patch Set 5: Code-Review+2 -- To view, visit https://gwt-review.googlesource.com/2500 To

[gwt-contrib] Change in gwt[master]: Introduces generic Composite widgets.

2013-05-22 Thread Brian Slesinsky
Brian Slesinsky has posted comments on this change. Change subject: Introduces generic Composite widgets. .. Patch Set 4: Since we already have ResizeComposite, I'm not sure that's a good example of how this change is an

[gwt-contrib] Change in gwt[master]: Introduces generic Composite widgets.

2013-05-22 Thread Goktug Gokdogan
Goktug Gokdogan has posted comments on this change. Change subject: Introduces generic Composite widgets. .. Patch Set 4: In the end, I tend to think that composites shouldn't expose low-level events from their wrapped

[gwt-contrib] Change in gwt[master]: Remove early optimization from Precompile.

2013-05-22 Thread Manuel Carrasco Moñino
Manuel Carrasco Moñino has posted comments on this change. Change subject: Remove early optimization from Precompile. .. Patch Set 2: Code-Review+1 I have tested the patch with a couple of large projects and the time

[gwt-contrib] Change in gwt[master]: Introduces generic Composite widgets.

2013-05-22 Thread Goktug Gokdogan
Hello Matthew Dempsky, Thomas Broyer, Leeroy Jenkins, I'd like you to reexamine a change. Please visit https://gwt-review.googlesource.com/2582 to look at the new patch set (#5). Change subject: Introduces generic Composite widgets.

[gwt-contrib] Change in gwt[master]: Adds FocusComposite and PanelComposite.

2013-05-22 Thread Goktug Gokdogan
Goktug Gokdogan has uploaded a new change for review. https://gwt-review.googlesource.com/2940 Change subject: Adds FocusComposite and PanelComposite. .. Adds FocusComposite and PanelComposite. Change-Id:

[gwt-contrib] Change in gwt[master]: Adds FocusComposite and PanelComposite.

2013-05-22 Thread Goktug Gokdogan
Goktug Gokdogan has posted comments on this change. Change subject: Adds FocusComposite and PanelComposite. .. Patch Set 1: Bringing the discussion to its own patch. Will looking into alternatives for event source

[gwt-contrib] Change in gwt[master]: Introduces generic Composite widgets.

2013-05-22 Thread Jens Nehlmeier
Jens Nehlmeier has posted comments on this change. Change subject: Introduces generic Composite widgets. .. Patch Set 4: @Brian: You can use UiBinder to define a custom Panel easily, the only downside is that you can not

[gwt-contrib] Change in gwt[master]: Introduces generic Composite widgets.

2013-05-22 Thread Brian Slesinsky
Brian Slesinsky has posted comments on this change. Change subject: Introduces generic Composite widgets. .. Patch Set 5: re: We cannot get rid of the mass by ignoring it - and not taking an action is exactly that. Well,

[gwt-contrib] Change in gwt[master]: Introduces generic Composite widgets.

2013-05-22 Thread Brian Slesinsky
Brian Slesinsky has posted comments on this change. Change subject: Introduces generic Composite widgets. .. Patch Set 5: (1 comment) File

[gwt-contrib] Change in gwt[master]: Fixes ISSUE 7079 - Add support for the newer bindery Handler...

2013-05-22 Thread Julien Dramaix
Julien Dramaix has posted comments on this change. Change subject: Fixes ISSUE 7079 - Add support for the newer bindery HandlerRegistration .. Patch Set 2: @Thomas I agree with your option #2 but we should create an issue

[gwt-contrib] Change in gwt[master]: Fixes ISSUE 7079 - Add support for the newer bindery Handler...

2013-05-22 Thread Goktug Gokdogan
Goktug Gokdogan has posted comments on this change. Change subject: Fixes ISSUE 7079 - Add support for the newer bindery HandlerRegistration .. Patch Set 2: Code-Review+1 It is weird but I don't think it is a big deal as

[gwt-contrib] Change in gwt[master]: Introduces generic Composite widgets.

2013-05-22 Thread Goktug Gokdogan
Goktug Gokdogan has posted comments on this change. Change subject: Introduces generic Composite widgets. .. Patch Set 3: (1 comment) File

[gwt-contrib] Change in gwt[master]: Introduces generic Composite widgets.

2013-05-22 Thread Brian Slesinsky
Brian Slesinsky has posted comments on this change. Change subject: Introduces generic Composite widgets. .. Patch Set 5: Goktug and I talked about this. I'll try to summarize: - How did this get so complicated? UIBinder

[gwt-contrib] Change in gwt[master]: Introduces generic Composite widgets.

2013-05-22 Thread Brian Slesinsky
Brian Slesinsky has posted comments on this change. Change subject: Introduces generic Composite widgets. .. Patch Set 5: Code-Review+2 -- To view, visit https://gwt-review.googlesource.com/2582 To unsubscribe, visit

[gwt-contrib] Change in gwt[master]: Fixes most issues with the SoyC reports. Applied an unsubmit...

2013-05-22 Thread Brian Slesinsky
Brian Slesinsky has posted comments on this change. Change subject: Fixes most issues with the SoyC reports. Applied an unsubmitted patch (http://gwt-code-reviews.appspot.com/1726803/) by Alan and added a few fixes. This is a somewhat ugly fix. A full refactor wll be done when the new

[gwt-contrib] Change in gwt[master]: Introduces generic Composite widgets.

2013-05-22 Thread Jens Nehlmeier
Jens Nehlmeier has posted comments on this change. Change subject: Introduces generic Composite widgets. .. Patch Set 5: So if the delegate feature sounds nice but has the potential to create confusion, why should it be

[gwt-contrib] Change in gwt[master]: Introduces generic Composite widgets.

2013-05-22 Thread Goktug Gokdogan
Goktug Gokdogan has posted comments on this change. Change subject: Introduces generic Composite widgets. .. Patch Set 5: We are really going in circles. The delegate is part of Composite because of the same reason why

[gwt-contrib] Change in gwt[master]: Adds FocusComposite and PanelComposite.

2013-05-22 Thread Goktug Gokdogan
Goktug Gokdogan has posted comments on this change. Change subject: Adds FocusComposite and PanelComposite. .. Patch Set 1: I thought little bit more on this. As we must always call specific addXYZHandler methods expecting