Re: DTO as a place constructor parameter in MVP with Activities and Places

2013-02-26 Thread Jens
Its just a matter of taste. I guess most people only store the database Id inside the place and then fetch the data in the activity. If you have multiple activities active at the same time you may build a thin layer between your activity and RPC mechanism so that only one request is done for a

Re: GWT RPC future ?

2013-02-26 Thread stuckagain
People, Just to post some feedback on my problem, I actually found a working solution and I think there is a lesson in here that it warrant me writing back in this thread. I managed to implement my own custom serialisation based on the flickr post. I managed to double the performance and I

How to hide North of DockLayoutPanel?

2013-02-26 Thread membersound
Hi, how can I show and hide the north panel from DockLayoutPanel by program code? Can I somehow bind the g:north ui:field=north / to a @UiField, and then pass it to dock.remove(Widget) and dock.addNorth(Widget) for showing it again? How is this to be done properly? -- You received this

Re: How to hide North of DockLayoutPanel?

2013-02-26 Thread membersound
Oh and not to forget: I also want to animate this. Atm I'm just passing the widget that is inside the g:north tag to be removed from the dock, like: dock.animate(3000); dock.setVisible(false); // dock.remove(inputPanel); Anyhow none of these shows an animation, so probably

Re: GWT Designer

2013-02-26 Thread Ignacio Baca Moreno-Torres
Right click on nameClase.ui.xml and choose WindowBuilder Editor. It's a android plugin problem which take precedence over all other editors for any *.xml. I think that there is no solution except unload/uninstal the plugin or manual right click... On Tuesday, February 26, 2013 10:51:19 AM

Re: How to hide North of DockLayoutPanel?

2013-02-26 Thread Thomas Broyer
If you want to animate, you have to resize the north panel to 0, rather than remove it (you can remove the widget at the end of the animation though, but adding back a widget isn't that easy after you added the center panel, better make it invisible with setWidgetHidden):

Re: GWT Designer

2013-02-26 Thread Crease
ok, perfect It´s right what I needed Thanks very much!! El martes, 26 de febrero de 2013 11:59:28 UTC+1, Ignacio Baca Moreno-Torres escribió: Right click on nameClase.ui.xml and choose WindowBuilder Editor. It's a android plugin problem which take precedence over all other editors for

Re: Re sizing in Split Lay out Panel

2013-02-26 Thread membersound
I have the same error using DockLayoutPanel when re-adding a west panel. Did you find a solution? -- 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: How to hide North of DockLayoutPanel?

2013-02-26 Thread membersound
Great, the setWidgetHidden() works exactly as what I was looking for. Just for reference, one have to call it in the following order to make the animation visible: dock.setWidgetHidden(inputPanel); dock.setWidgetSize(inputPanel, 0); dock.animate(3000); Am Dienstag, 26. Februar 2013 12:03:20

Re: Re sizing in Split Lay out Panel

2013-02-26 Thread Jens
You dont have to remove and re-add it. JavaDoc: SplitLayoutPanel.setWidgetHidden() / SplitLayoutPanel.setWidgetSize() Am Dienstag, 26. Februar 2013 12:22:02 UTC+1 schrieb membersound: I have the same error using DockLayoutPanel when re-adding a west panel. Did you find a solution? -- You

How to permanently change text of ToggleButton?

2013-02-26 Thread membersound
Changing the text of togglebutton only appears on hover. Is this correct? g:ToggleButton text=test / @UiHandler(toggleButton) onToggle(ClickEvent evt) { if (toggleButton.isDown()) { toggleButton.setText(is down); } else { toggleButton.setText(is up); } } Result: I only see

How to override gwt styles in uibinder?

2013-02-26 Thread membersound
I want to override button gwt styles directly in uibinder. But why does the following not work? g:ToggleButton styleName={style.toggle} / ui:style .toggle-down, .toggle-down-hovering { background: red !important; background-color: red!important; } /ui:style -- You received this message

Re: How to override gwt styles in uibinder?

2013-02-26 Thread Thomas Broyer
CssResources does not know about the primary style names and dependent style names concepts of widgets, so .toggle-down with be obfuscated to something that does not end in -down, which the ToggleButton is using. You have to either: - find a unique name for the CSS class, and disable

Re: How to permanently change text of ToggleButton?

2013-02-26 Thread Jens
ToggleButton is a CustomButton and has so called Faces and setText() only changes the text of the current Face. In a click handler the current Face can probably only be UP_HOVERING and DOWN_HOVERING and you have changed the text of one or both of them. So all the faces can have different text

Re: New widgets: Best way to implement them?

2013-02-26 Thread Ümit Seren
Interesting topic. Can't really comment on those things but I guess the CellWidgets are a good starting point. I also came across a good stackoverflow reply which I think might also be useful: http://stackoverflow.com/a/7481137/356594 On Monday, February 25, 2013 3:32:08 PM UTC+1, Jens wrote:

Re: GWT 2.5 dev mode unable to refresh

2013-02-26 Thread Patrick Tucker
I normally see that right before an out of memory error happens. I just stop and start the environment and continue on... On Tuesday, November 13, 2012 6:52:03 PM UTC-5, Ben St. Pierre wrote: Hi guys, After upgrading to to GWT 2.5 I am unable to refresh my dev mode. It initially loads

Re: How to permanently change text of ToggleButton?

2013-02-26 Thread Kody
Ok good hint. Setting text for both up and down face works as expected. 2013/2/26 Jens jens.nehlme...@gmail.com ToggleButton is a CustomButton and has so called Faces and setText() only changes the text of the current Face. In a click handler the current Face can probably only be UP_HOVERING

Re: How to override gwt styles in uibinder?

2013-02-26 Thread Kody
Ok having some @externals within ui:style is probably best here, and works as expected. 2013/2/26 Thomas Broyer t.bro...@gmail.com CssResources does not know about the primary style names and dependent style names concepts of widgets, so .toggle-down with be obfuscated to something that does

Re: New widgets: Best way to implement them?

2013-02-26 Thread Andrea Boscolo
+1 Just adding few thoughts. Personally I think that, performance wise, cells are the best. But it is also true that they can be tricky to work with, when defining new widgets. Luckily CellWidget helps *a lot* this way. Using CellWidget + Appearance pattern [1] + maybe UiRenderer, let you code

Re: New widgets: Best way to implement them?

2013-02-26 Thread Thomas Broyer
On Tuesday, February 26, 2013 5:12:34 PM UTC+1, Andrea Boscolo wrote: As a side note, interesting are the choices made in Collide: low-level mvp-based widgets built upon the Element object coming from the Elemental library, with some added custom listeners, as necessary [5]. [5]

ONLINE .NET TRAINING

2013-02-26 Thread mytranings
HI, PLEASE FIND THE BELOW LINK FOR .NET ONLINE TRAINING AND PROJECT SUPPORT. http://onlinenettrainings.blogspot.com/ PLEASE FEEL FREE TO CONTACT FOR ANY QUERIES TO BELOW MAIL ID rudrajayku...@gmail.com THANK YOU AJAY KUMAR -- You received this message because you are subscribed to the Google

Disable a specific button in a ButtonCell

2013-02-26 Thread Björn
Hey, we tried it in different ways and we couldnt find a solution for our problem. We create a Table with games, so a lobby and there are all our games with informations and a join-button. If the game is full or the user is already in the game, we want to disable the button. // Join Column

Re: GWT still viable for new projects?

2013-02-26 Thread emurmur
I agree with what James wrote. There is a whole class of alt-js languages that compile to javascript. GWT if by far the most mature and usable. You can use the mature widget library for Enterprise kinds of stuff, our use low level browser api's and Elemental to write 'to the metal' browser

Re: GWT still viable for new projects?

2013-02-26 Thread James Nelson
Hey emurmur, I'm actually about a week or two away from releasing a fork of the collide project (a collaborative web IDE built by Google, but abandoned when they closed Atlanta). It has an integrated gwt compiler that runs in the server, and super-dev-mode recompiles it's own running source

Re: GWT 2.5 dev mode unable to refresh

2013-02-26 Thread James Nelson
Have you guys considered trying out the new super-dev-mode? I only save the sluggish dev mode for when I absolutely have to have a java debugger to find out what's going on. Super-dev-mode will cost you a few seconds per page refresh (though, OOM popping your JVM is much, much slower), but it

Re: MySQL Database Connection

2013-02-26 Thread Karthik Avjs
Hi All, I have the same problem Could not initialize class 'com.mysql.jdbc. ConnectionImpl' while working with Google app engine in the Dev mode. Any leads on the solution? Thanks On Monday, June 20, 2011 5:59:35 PM UTC+5:30, Aryan wrote: Hi all, I have an application

Header with A Horizontal Menu and Sub Menu

2013-02-26 Thread pradeep . sethban
Hi All Can any body share/refer sample code for following in GWT 1. A header with A Horizontal Menu – Main Menu. 2. Click on a item on Main Menu, It will open – a Vertical Sub Menu on right hand side. 3. And A footer. Really appreciate for any help.

Unable to install Window Builder Pro on Eclipse 4.2

2013-02-26 Thread Nick Kloski
Hi all...I want to learn more about the Window Builder Pro plugin to Eclipse and I am having problems getting it installed. Brand new Eclipse 4.2 install on Linux 64-bit. Installed Eclipse, ran get updates...updates downloaded, and eclipse restarted fine. Installed GWT+SDK's, installed and

Problem with DynaTableRf Sample with Maven

2013-02-26 Thread Adam Augusta
I get an error when I try to run the DynaTableRf sample application with maven. Can anyone enlighten me? Sample app from GWT 2.5.0 release. Maven 2.2.1 There are four CG errors (one for each domain object?), then I get a The RequestFactory ValidationTool... error. Adams-MacBook-Pro:DynaTableRf

Re: Problem with DynaTableRf Sample with Maven

2013-02-26 Thread Adam Augusta
I ended up fixing this by adding the following two plug-in configurations. So, was this a bug, or was my annotation-processor discovery not working right for some environmental reason? I don't want to violate best practices, especially on a new codebase. Let me know if you have any tips or

Re: DTO as a place constructor parameter in MVP with Activities and Places

2013-02-26 Thread Craig Hawkins
Thanks for your perspective. Passing an object ID around certainly seems better than serializing the whole data object in the tokenizer, especially considering that the data object can be cached. I read somewhere on a blog yesterday where someone chose to implement the presenter in a separate

Re: PopupPanel.hide() steals focus from TextBox?

2013-02-26 Thread rjfleck
I had a similar problem with a DialogBox setModal(false) fixed it. -- 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

[gwt-contrib] Change in gwt[master]: Proxy IDs have to be the same for a given proxy in the respo...

2013-02-26 Thread Thomas Broyer
Thomas Broyer has abandoned this change. Change subject: Proxy IDs have to be the same for a given proxy in the response payload. .. Abandoned Submitted -- To view, visit https://gwt-review.googlesource.com/1770 To

[gwt-contrib] Fixes #8036, properly sorting of places in PlaceHistoryGeneratorContext (issue1895803)

2013-02-26 Thread t . broyer
LGTM http://gwt-code-reviews.appspot.com/1895803/ -- -- http://groups.google.com/group/Google-Web-Toolkit-Contributors --- You received this message because you are subscribed to the Google Groups Google Web Toolkit Contributors group. To unsubscribe from this group and stop receiving emails

[gwt-contrib] Re: GWT Messages can support SafeHtml output. Add this support to the FakeMessagesMaker as well. (issue1890803)

2013-02-26 Thread skybrian
LGTM http://gwt-code-reviews.appspot.com/1890803/ -- -- http://groups.google.com/group/Google-Web-Toolkit-Contributors --- You received this message because you are subscribed to the Google Groups Google Web Toolkit Contributors group. To unsubscribe from this group and stop receiving emails

[gwt-contrib] Change in gwt[master]: Fix Stack trace collection for iOS: first element was dropped.

2013-02-26 Thread Matthew Dempsky
Matthew Dempsky has posted comments on this change. Change subject: Fix Stack trace collection for iOS: first element was dropped. .. Patch Set 1: Seems reasonable to me. Are there any existing tests that cover this? If

[gwt-contrib] mavenization of gwt.. some progress... (cross posted from g+)

2013-02-26 Thread James Northrup
cross posted from https://plus.google.com/u/0/112159826230131242033/posts/UZmATUKyMRg https://docs.google.com/document/d/1JCWTtZqvXQlPyCMbllGAcFaCuGd89UGEBYdLhsqUkiM/edit steps 3-5 have been done, outlined in a g+ post We are in a situation where anyone with greater knowledge of gwt

[gwt-contrib] Re: GWT and WebKit issues

2013-02-26 Thread Leif Åstrand
I have also stumbled upon another similar issue (i.e. broken in Safari on iOS6 but working in Chrome on the same system) where number comparison breaks down after about 6000 iterations following a specific pattern: http://code.google.com/p/google-web-toolkit/issues/detail?id=7844 As I observed