Re: Design Decision RPC with AsyncDataProvider

2013-06-18 Thread Jochen Schnaidt
Hi, I now started to give my columns DataStoreNames, works much better for a couple of requirements. Thank you so much for helping me on this topic. Best regards Jochen -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe

Re: RequestFactory, entity Id not populated when it reaches the server?

2013-06-18 Thread Thomas Broyer
On Monday, June 17, 2013 9:55:09 PM UTC+2, GWTter wrote: Hi, So I went back using the dev tools, inspected the payload, and confirmed what I had before: the ID is not set at all in the user object payload. Just to make sure I wasn't crazy or missing something I created just a User

Re: JUnitShell: Why is the log level overriden to WARN?

2013-06-18 Thread Thomas Broyer
On Monday, June 17, 2013 10:54:16 PM UTC+2, Maik Riechert wrote: Hi, when developing JUnit runstyles I want to do info/trace logging, e.g.: shell.getTopLogger().log(TreeLogger.TRACE, Letting PhantomJS fetch + url); I have to change all those logging outputs to at least WARN to see

Re: JUnitShell: Why is the log level overriden to WARN?

2013-06-18 Thread Maik Riechert
Thomas Broyer wrote: You definitely *can* change the log level from the command line, WARN is just the default value. Arguments are passed to JUnitShell through the gwt.args system property, the same you use to set your custom RunStyle: -Dgwt.args=-logLevel DEBUG -out www-test -runStyle

Re: AWS (CDN) GWT file deployment and 'Blocked a frame with origin' issue

2013-06-18 Thread Thomas Broyer
On Monday, June 17, 2013 7:26:43 PM UTC+2, Joseph Lust wrote: Thomas, Sorry I didn't catch you at the GWTogether in SF last month. I owe you a number of beers. :) *That did the trick*. I'll bang out an article for GWTProject.org on AWS (and similar) CDN deployments. BTW, I shamefully

Re: JUnitShell: Why is the log level overriden to WARN?

2013-06-18 Thread Thomas Broyer
On Tuesday, June 18, 2013 10:11:57 AM UTC+2, Maik Riechert wrote: Thomas Broyer wrote: You definitely *can* change the log level from the command line, WARN is just the default value. Arguments are passed to JUnitShell through the gwt.args system property, the same you use to set

Dynamic place navigation

2013-06-18 Thread Prince
Hi, I have a requirement to navigate to the places where place is dynamically decided. For example, I have an Edit User link from Screen-1 Screen-2. When I click on the link, it takes me to EditUserView.java. Now, when I click on Save button from my EditUserView.java, it should take me to

Re: Dynamic place navigation

2013-06-18 Thread Jens
History.back(); maybe? If this doesn't work for you then store the previous place in the current place so you can call placeController.goTo(editUserPlace.getPreviousPlace()); later on. -- J. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: Dynamic place navigation

2013-06-18 Thread Thomas Broyer
On Tuesday, June 18, 2013 11:19:39 AM UTC+2, Prince wrote: Hi, I have a requirement to navigate to the places where place is dynamically decided. For example, I have an Edit User link from Screen-1 Screen-2. When I click on the link, it takes me to EditUserView.java. Now, when I

How to update and refresh a Cell by code?

2013-06-18 Thread membersound
Hi, I have a CellWidget (EditTextCell) that I want to set a specific value manually by code. But the UI is not updated? What am I missing? @UiField(provided = true) CellWidgetString cell; cell.setValue(text, true); cell.redraw(); -- You received this message because you are subscribed to the

JUnitShell.getModuleUrl() produces invalid URL for IPv6 addresses

2013-06-18 Thread Maik Riechert
Hi, it seems the JUnitShell is generating invalid URLs if IPv6 is used: http://2607:f700:8000:12d:dd58:687b:744c:800c:48579/... You can observe this here: https://travis-ci.org/neothemachine/KineticGWT/builds/8191369#L881 The URL should be

Re: JUnitShell.getModuleUrl() produces invalid URL for IPv6 addresses

2013-06-18 Thread Thomas Broyer
On Tuesday, June 18, 2013 11:59:49 AM UTC+2, Maik Riechert wrote: Hi, it seems the JUnitShell is generating invalid URLs if IPv6 is used: http://2607:f700:8000:12d:dd58:687b:744c:800c:48579/... You can observe this here: https://travis-ci.org/neothemachine/KineticGWT/builds/8191369#L881

Re: Application architecture question

2013-06-18 Thread Imy
Follow up on this matter. Thanks you for all the inputs, we considered them and decided what is the best solution for our project. In the end we created an object that models the data that we receive from the database and from the after calculations. In the HomeActivity class of the HomeView (in

Beginning...Problems with navigation

2013-06-18 Thread Carmen
Hi, i'm just beginning with GWT and I have a problem to make my application behave as I want. The fact is that I have one main static html page that links to three subpages that are similar but contain a dynamic part each one. Must I use one single entry point to the main page? If I choose

Re: Beginning...Problems with navigation

2013-06-18 Thread Joseph Lust
Carmen, Can you elaborate on what you're trying to build and what it does? GWT is intended for Web *Apps*, not Web *Sites*. So, typically GWT would not be used for a blog, but it would be used for say an employee time tracking application. Take this forum reader as a good example of GWT. The

Re: Setting TreeItem userObject with uiBinder?

2013-06-18 Thread Philippe Lhoste
On 17/06/2013 16:38, Pascal Heus wrote: Tried that one but fails with Cannot parse value: FooKeyValue as type java.lang.Object: g:TreeItem ... *P On 6/17/13 12:38 PM, Philippe Lhoste wrote: On 17/06/2013 10:55, Kulnor wrote: Is there any way to set a TreeItem user object in the UI Binder

problem to test the widget TabPanel

2013-06-18 Thread fatimaAngel
I work on a gwt project, I should create some interfaces using widgets, and everything is good. here a part of my file .ui.xml ui:UiBinder xmlns:ui=urn:ui:com.google.gwt.uibinder xmlns:g=urn:import:com.google.gwt.user.client.uig:TabPanel width=150px height=130px g:Tab

Re: problem to test the widget TabPanel

2013-06-18 Thread Thomas Broyer
This is likely a bug in gwt-test-utils. Does your app compile? Does the creationInterface.ui.xml works in a GWTTestCase? On Tuesday, June 18, 2013 4:38:04 PM UTC+2, fatimaAngel wrote: I work on a gwt project, I should create some interfaces using widgets, and everything is good. here a

Re: RequestFactory, entity Id not populated when it reaches the server?

2013-06-18 Thread GWTter
Hi Thomas, I just submitted the issue http://code.google.com/p/google-web-toolkit/issues/detail?id=8204, thanks again. On Tuesday, June 18, 2013 9:39:33 AM UTC+2, Thomas Broyer wrote: On Monday, June 17, 2013 9:55:09 PM UTC+2, GWTter wrote: Hi, So I went back using the dev tools,

How to change corner color of DecoratedTabBar?

2013-06-18 Thread membersound
Hi, I can see a DecoratedTabBar depends on some images (images/corner.png). If I edit them and change the color, where to I have to place them in order to make the TabBar respect my changes? Thanks -- You received this message because you are subscribed to the Google Groups Google Web

How come the ScrollEvent is never fired in this code?

2013-06-18 Thread Mohammad Al Quraian
I'm playing around with some code, but I couldn't figure out how come the ScrollEvent is never fired, I put a breakpoint on onScroll and it never breaks! Here is the code: public class InfiniteScrollPanel implements ScrollHandler { String text = Lorem ipsum dolor sit amet, consectetuer...;

Re: How come the ScrollEvent is never fired in this code?

2013-06-18 Thread Jens
Your ScrollPanel never needs to scroll if it really has a height of 1200px but only contains such a short text. Also ScrollPanel extends SimplePanel so it can only have exactly one child widget. That means if onScroll() executes you will see an exception because you are trying to add a second

Re: Dynamic place navigation

2013-06-18 Thread Akbar Gadhiya
Hi All, Thanks for responding. I will try to add return place in my new place. On Tue, Jun 18, 2013 at 3:01 PM, Thomas Broyer t.bro...@gmail.com wrote: On Tuesday, June 18, 2013 11:19:39 AM UTC+2, Prince wrote: Hi, I have a requirement to navigate to the places where place is

[gwt-contrib] Change in gwt[master]: Fix binary vs. internal variable names, remove unused Name c...

2013-06-18 Thread Manuel Carrasco Moñino
Manuel Carrasco Moñino has posted comments on this change. Change subject: Fix binary vs. internal variable names, remove unused Name code. .. Patch Set 1: Code-Review+1 -- To view, visit

[gwt-contrib] Change in gwt[master]: Adding key codes

2013-06-18 Thread Daniel Kurka
Daniel Kurka has uploaded a new patch set (#2). Change subject: Adding key codes .. Adding key codes fixes issue 8203 Change-Id: Ia1cd903123d79db81ceb44103892e168d38a4e4e --- M

[gwt-contrib] Change in gwt[master]: Adding key codes

2013-06-18 Thread Ray Cromwell
Ray Cromwell has posted comments on this change. Change subject: Adding key codes .. Patch Set 2: Code-Review+2 -- To view, visit https://gwt-review.googlesource.com/3480 To unsubscribe, visit

[gwt-contrib] Change in gwt[master]: Adding key codes

2013-06-18 Thread Daniel Kurka
Daniel Kurka has uploaded a new change for review. https://gwt-review.googlesource.com/3480 Change subject: Adding key codes .. Adding key codes fixes issue 8203 Change-Id: Ia1cd903123d79db81ceb44103892e168d38a4e4e --- M

[gwt-contrib] Change in gwt[master]: Adding key codes

2013-06-18 Thread Daniel Kurka
Daniel Kurka has submitted this change and it was merged. Change subject: Adding key codes .. Adding key codes fixes issue 8203 Change-Id: Ia1cd903123d79db81ceb44103892e168d38a4e4e --- M

[gwt-contrib] Change in gwt[master]: Add interfaces for widgets.

2013-06-18 Thread Stephen Haberman
Stephen Haberman has posted comments on this change. Change subject: Add interfaces for widgets. .. Patch Set 8: doesn't fit into current IsXXX because if it was you wouldn't need IsWidget2 :) My take is that it's just

[gwt-contrib] Change in gwt[master]: Add interfaces for widgets.

2013-06-18 Thread Goktug Gokdogan
Goktug Gokdogan has posted comments on this change. Change subject: Add interfaces for widgets. .. Patch Set 8: The part that I'm not comfortable with is, you can exactly have the same effect with the current state. Yes

[gwt-contrib] Change in gwt[master]: Use Double.isNan(d) instead of d != d to test for NaN.

2013-06-18 Thread Matthew Dempsky
Matthew Dempsky has uploaded a new change for review. https://gwt-review.googlesource.com/3490 Change subject: Use Double.isNan(d) instead of d != d to test for NaN. .. Use Double.isNan(d) instead of d != d to test for NaN.

[gwt-contrib] Change in gwt[master]: Use Double.isNaN(d) instead of d != d to test for NaN.

2013-06-18 Thread Goktug Gokdogan
Goktug Gokdogan has posted comments on this change. Change subject: Use Double.isNaN(d) instead of d != d to test for NaN. .. Patch Set 2: Code-Review+2 -- To view, visit https://gwt-review.googlesource.com/3490 To

[gwt-contrib] Change in gwt[master]: Adds Timer#isRunning().

2013-06-18 Thread Goktug Gokdogan
Goktug Gokdogan has posted comments on this change. Change subject: Adds Timer#isRunning(). .. Patch Set 2: Daniel, do you have any other concerns? -- To view, visit https://gwt-review.googlesource.com/3321 To unsubscribe,

[gwt-contrib] Change in gwt[master]: Add interfaces for widgets.

2013-06-18 Thread Colin Alworth
Colin Alworth has posted comments on this change. Change subject: Add interfaces for widgets. .. Patch Set 8: What is the thinking for the remaining 10%-ish of widgets - all of the cell widgets (except CellPanel), remaining

[gwt-contrib] Change in gwt[master]: Fixes UiHandler method matching in generic classes

2013-06-18 Thread Goktug Gokdogan
Goktug Gokdogan has submitted this change and it was merged. Change subject: Fixes UiHandler method matching in generic classes .. Fixes UiHandler method matching in generic classes Method matching in UiHandler is completely

[gwt-contrib] Change in gwt[master]: Adds an accessor to original throwable from SerializableThro...

2013-06-18 Thread Goktug Gokdogan
Goktug Gokdogan has uploaded a new change for review. https://gwt-review.googlesource.com/3500 Change subject: Adds an accessor to original throwable from SerializableThrowable. .. Adds an accessor to original throwable

[gwt-contrib] Change in gwt[master]: Fixes GWT.runAsync that was broken in a recent patch.

2013-06-18 Thread Goktug Gokdogan
Goktug Gokdogan has uploaded a new change for review. https://gwt-review.googlesource.com/3510 Change subject: Fixes GWT.runAsync that was broken in a recent patch. .. Fixes GWT.runAsync that was broken in a recent patch.

[gwt-contrib] Change in gwt[master]: Adds an accessor to original throwable from SerializableThro...

2013-06-18 Thread Brian Slesinsky
Brian Slesinsky has posted comments on this change. Change subject: Adds an accessor to original throwable from SerializableThrowable. .. Patch Set 1: Code-Review+1 (1 comment) Seems basically okay.

[gwt-contrib] Change in gwt[master]: Adds an accessor to original throwable from SerializableThro...

2013-06-18 Thread Goktug Gokdogan
Goktug Gokdogan has posted comments on this change. Change subject: Adds an accessor to original throwable from SerializableThrowable. .. Patch Set 1: (1 comment) File

[gwt-contrib] Change in gwt[master]: Adds an accessor to original throwable from SerializableThro...

2013-06-18 Thread Goktug Gokdogan
Hello Leeroy Jenkins, Brian Slesinsky, I'd like you to reexamine a change. Please visit https://gwt-review.googlesource.com/3500 to look at the new patch set (#2). Change subject: Adds an accessor to original throwable from SerializableThrowable.

[gwt-contrib] Change in gwt[master]: Adds Element#toggleClassName.

2013-06-18 Thread Goktug Gokdogan
Goktug Gokdogan has uploaded a new change for review. https://gwt-review.googlesource.com/3501 Change subject: Adds Element#toggleClassName. .. Adds Element#toggleClassName. Change-Id:

[gwt-contrib] Change in gwt[master]: Adds an accessor to original throwable from SerializableThro...

2013-06-18 Thread Brian Slesinsky
Brian Slesinsky has posted comments on this change. Change subject: Adds an accessor to original throwable from SerializableThrowable. .. Patch Set 2: Code-Review+2 (1 comment)

[gwt-contrib] Change in gwt[master]: Adds an accessor to original throwable from SerializableThro...

2013-06-18 Thread Goktug Gokdogan
Hello Leeroy Jenkins, Brian Slesinsky, I'd like you to reexamine a change. Please visit https://gwt-review.googlesource.com/3500 to look at the new patch set (#3). Change subject: Adds an accessor to original throwable from SerializableThrowable.

[gwt-contrib] Change in gwt[master]: Adds Node#removeAllChildren.

2013-06-18 Thread Goktug Gokdogan
Goktug Gokdogan has uploaded a new change for review. https://gwt-review.googlesource.com/3511 Change subject: Adds Node#removeAllChildren. .. Adds Node#removeAllChildren. Change-Id:

[gwt-contrib] Change in gwt[master]: Move StackTraceDeobfuscator from core.server.impl to core.se...

2013-06-18 Thread Goktug Gokdogan
Goktug Gokdogan has uploaded a new change for review. https://gwt-review.googlesource.com/3512 Change subject: Move StackTraceDeobfuscator from core.server.impl to core.server. .. Move StackTraceDeobfuscator from

[gwt-contrib] Change in gwt[master]: Add interfaces for widgets.

2013-06-18 Thread Stephen Haberman
Stephen Haberman has posted comments on this change. Change subject: Add interfaces for widgets. .. Patch Set 8: Hi Colin, the only approach in selecting classes is that these are what I'd used so far, plus a few others.

[gwt-contrib] Change in gwt[master]: Adds Node#removeAllChildren.

2013-06-18 Thread Daniel Kurka
Daniel Kurka has posted comments on this change. Change subject: Adds Node#removeAllChildren. .. Patch Set 1: (3 comments) File

[gwt-contrib] Change in gwt[master]: Add interfaces for widgets.

2013-06-18 Thread Stephen Haberman
Stephen Haberman has posted comments on this change. Change subject: Add interfaces for widgets. .. Patch Set 8: Hi Goktug, Being said that, rest assured, I wouldn't -1 for just not using it. Good, good--sorry if I got a

[gwt-contrib] Change in gwt[master]: Adds Element#toggleClassName.

2013-06-18 Thread Daniel Kurka
Daniel Kurka has posted comments on this change. Change subject: Adds Element#toggleClassName. .. Patch Set 1: Code-Review+2 -- To view, visit https://gwt-review.googlesource.com/3501 To unsubscribe, visit