Re: DevMode for Firefox 14

2012-07-19 Thread koma
thx a million ! On Thursday, July 19, 2012 3:23:43 AM UTC+2, Alan Leung wrote: any change for Linux 64bit ? The 64bit Linux works now. http://acleung.com/ff14-linux64.xpi -Alan -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: GWT 2.5-rc1 feature uirender is not working as expected.

2012-07-19 Thread Thomas Broyer
On Thursday, July 19, 2012 5:36:13 AM UTC+2, Vasu wrote: Yes you were right, it is instantiating new Person object. But if I try to set Type to empty string validation fails and I cannot run the application. I didn't mean to set it to the empty string, but to not use the attribute:

Positioning widgets

2012-07-19 Thread zame...@gmail.com
Hi All, I would like to use this layout in my gwt app: The main window has a VerticalPanel, the first element of this VP is a TabPanel and the second is a status panel. 1. I need to force the status panel to the bottom of screen. Could I do it with something? Maybe with a css? I tried to

Re: Document.get().isOrHasChild(element) != isAttached() in CHrome ??

2012-07-19 Thread Ed Bras
I ust run some tests and noticed the following in Chrome (in FF 12 they all return true): 1) Document.get().isOrHasChild(element) - false 2) Document.get().getDocumentElement().isOrHasChild(element) - true 3) Document.get().getBody().isOrHasChild(element) - true 4) widget.isAttache() - true

Re: import common style rules?

2012-07-19 Thread Ed
Thanks for your detailed and clear example and your time. I am aware of this concept and use it a lot. But, sorry, that doesn't solve my problem. Like you said, I have to set 2 styles on the widget, which is not what I want as I want it to be style agnostic as much as possible. That said, it's a

Re: DevMode for Firefox 14

2012-07-19 Thread Ed
And windows ? ;) Op woensdag 18 juli 2012 05:30:15 UTC+2 schreef David Guo het volgende: Hi Alan, Too bad to hear this news. Hope someone can continue to work on this devmode. On Wednesday, July 18, 2012 8:08:06 AM UTC+8, Alan Leung wrote: While I am technically no longer on the

Creating a new Custombutton by subclassing a Button

2012-07-19 Thread javed ansari
I have created one CustomButton which consists of once image and one label. public class CustomButton extends Button implements ClickHandler{ // call an empty constructor public ConfigButton() { } private Label conflbl; private Button btn; public

Re: Thread deadlock when trying to maven compile using 2.5-rc1

2012-07-19 Thread JoseM
Even with local workers set to 1 I get the same deadlock, I forgot to mention that is what I did in my second post -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: import common style rules?

2012-07-19 Thread Joseph Lust
Ed, Ideally (in the spirit of CSSResource) you'd hack the CSSResource/ClientBundle setup so that when extending a CSSResource, you could automatically have .parent.child concatenated for you to parent child to be returned when you ask for the class name. However, I've done no such hacking in

Re: Creating a new Custombutton by subclassing a Button

2012-07-19 Thread Joseph Lust
Your issue is this.Click(). In Java, method names are not capitalized, so I would not expect this method to exist. You want Button.click()http://google-web-toolkit.googlecode.com/svn/javadoc/2.4/com/google/gwt/user/client/ui/Button.html#click() . Sincerely, Joseph -- You received this

Editor Framework and Multi Select Listbox

2012-07-19 Thread Alex opn
Hello all, I tried to implement a MultiSelectValueListBox based on the ValueListBoxhttp://google-web-toolkit.googlecode.com/svn/javadoc/2.1/com/google/gwt/user/client/ui/ValueListBox.htmlbut I did not come far. Not even worth posting my messy code here :) I hope anyone has done this already

Re: DevMode for Firefox 14

2012-07-19 Thread Samyem Tuladhar
Is it possible to have some community mechanism to separate the FX GWT plugin so that we don't have to have this discussion every single time a new FX comes up in 6 weeks? On Thursday, July 19, 2012 6:07:26 AM UTC-4, Ed wrote: And windows ? ;) Op woensdag 18 juli 2012 05:30:15 UTC+2

GWT Unit Testing

2012-07-19 Thread Ferenc Balogh
I'd like to develop unit tests for my GWT application, but I'm facing some exotic problems: 1, The server side is in PHP so I'm using my own apache http server, not the embedded jetty in GWT. I'd like to do the same for unit testing, but -noserver option is not available for unit tests. I

Re: import common style rules?

2012-07-19 Thread Juan Pablo Gardella
Hi Ed, How do you format the code? Cheers, Juan 2012/7/19 Ed post2edb...@gmail.com Thanks for your detailed and clear example and your time. I am aware of this concept and use it a lot. But, sorry, that doesn't solve my problem. Like you said, I have to set 2 styles on the widget, which

Re: Positioning widgets

2012-07-19 Thread Ümit Seren
1.) For these kind of layouts I would always use the LayoutPanels. Instead of a DockLayoutPanel you can use a LayoutPanel. Something along these lines: g:LayoutPanel g:layer left=0 right=0 top=0 bottom=15px !-- Main Window content !-- /g:layer g:layer left=0 right=0 top=15px bottom=0 !--

Re: DevMode for Firefox 14

2012-07-19 Thread Anderson Aroeira Araujo
You're *awesome*. Thank you! On Tuesday, July 17, 2012 9:08:06 PM UTC-3, Alan Leung wrote: While I am technically no longer on the team, I got curious and started looking at the FF14 changes. There were some slight changes in the JS Object layout again but they seem easy enough to fix.

Re: DevMode for Firefox 14

2012-07-19 Thread Eduardo Garcia Lopez
Hi, I know probably this is not the appropriate thread, but I have problems with DevMode plugin for Chrome OSX Lion since last Chrome update, is it only me? El jueves, 19 de julio de 2012 08:25:52 UTC+2, glascaleia escribió: For osx lion?? Inviato da iPhone Il giorno 19/lug/2012, alle ore

Re: Thread deadlock when trying to maven compile using 2.5-rc1

2012-07-19 Thread JoseM
I put in a bug report: http://code.google.com/p/google-web-toolkit/issues/detail?id=7536 On Thursday, July 19, 2012 6:38:28 AM UTC-4, Thomas Broyer wrote: On Thursday, July 19, 2012 6:44:04 AM UTC+2, JoseM wrote: If it helps I am trying to build this using my Mac. I also realized that

Re: DevMode for Firefox 14

2012-07-19 Thread Thomas Broyer
On Thursday, July 19, 2012 3:18:18 PM UTC+2, Samyem Tuladhar wrote: Is it possible to have some community mechanism to separate the FX GWT plugin so that we don't have to have this discussion every single time a new FX comes up in 6 weeks? What do you mean by community mechanism? and

Re: Editor Framework and Multi Select Listbox

2012-07-19 Thread Thomas Broyer
It depends on the widget you intend to use for display. Given that ListBox has no notion of value other than a bare String, I'd rather go with CellList or CellTable (but if Strings are OK, then just use a ListBox). The easiest would then be to use a LeafValueEditorSetMyValue wrapping the

Re: import common style rules?

2012-07-19 Thread Ed Bras
How do you format the code? @Juan: what do you mean? -- 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-toolkit@googlegroups.com. To unsubscribe from this group, send email to

Re: import common style rules?

2012-07-19 Thread Juan Pablo Gardella
How show formatted text inside the body's mail? like this: // BaseWidgetCSSResource.javapackage com.testbed.client.resources; import com.google.gwt.resources.client.CssResource; public interface BaseWidgetCssResource extends CssResource { String baseWidget(); } Cheers, Juan 2012/7/19 Ed

Re: Document.get().isOrHasChild(element) != isAttached() in CHrome ??

2012-07-19 Thread Jeff Chimene
On 07/19/2012 02:51 AM, Ed Bras wrote: I ust run some tests and noticed the following in Chrome (in FF 12 they all return true): Well, that's annoying... 1) Document.get().isOrHasChild(element) - false 2) Document.get().getDocumentElement().isOrHasChild(element) - true 3)

Re: TextResource vs Constant

2012-07-19 Thread Lars
Excellent advice... Thanks Thomas Joseph. I'm assuming when it comes down to deciding b/w using the Constants or Messages interfaces, the decision is based upon whether you need the substitution features available by using messages? Thanks again, Lars On Wednesday, July 18, 2012 8:42:28 PM

Re: import common style rules?

2012-07-19 Thread Jens
How show formatted text inside the body's mail? You can use Github or Google Code to convert your plain text code into styled HTML that you can use in Mails / Google Groups. See: https://groups.google.com/d/topic/google-web-toolkit/t6mXHRPVOfM/discussion -- J -- You received this

Re: Thread deadlock when trying to maven compile using 2.5-rc1

2012-07-19 Thread EMan
I am seeing the same thing. Curious if this really is a jvm bug, how is this working at google? On Thursday, July 19, 2012 11:20:30 AM UTC-4, JoseM wrote: I put in a bug report: http://code.google.com/p/google-web-toolkit/issues/detail?id=7536 On Thursday, July 19, 2012 6:38:28 AM UTC-4,

Re: Code Formatting/Highlights for GWT Group Postings?

2012-07-19 Thread Jens
Huu...just found Markdown Here @ https://chrome.google.com/webstore/detail/elifhakcjgalahccnjkneoccemfahfoa After you have installed it you can write Github-flavoured Markdown into any Textarea ( = Google Groups, Gmail, ...) and then right click into the TextArea and choose Markdown Toggle

Regarding GWT with the upcoming Windows 8 and Internet Explorer 10

2012-07-19 Thread Chak Lai
It has been confirm that the release date for Windows 8 is October 26, 2012. Windows 8 also includes the next version of its browser: Internet Explorer 10. Will GWT 2.5 (final release) support IE10? -- You received this message because you are subscribed to the Google Groups Google Web

Re: import common style rules?

2012-07-19 Thread Ed Bras
could automatically have .parent.child concatenated for you to parent child to be returned when you ask for the class name. However, @Joseph: that's not even such a bad idea. Indeed you could use a Delegator class that implements that Widget style interface that forwards the call to the

Re: TextResource vs Constant

2012-07-19 Thread 3xM
you can also access it programmatically like this: @UiField ButtonMessages msg; public void someMethod() { // set string programmatically someElement.setInnerText(msg.getString());} -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: Document.get().isOrHasChild(element) != isAttached() in CHrome ??

2012-07-19 Thread Ed Bras
What problem is it you're trying to solve? That's going to dictate the solution. The problem is solved: not using the method construction: Document.get().isOrHasChild(element). Instead I use: Document.get().getDocumentElement().isOrHasChild(element) But, the outcome smells like a bug, so

Use RequestFactoryProxy on UiBinder Template.

2012-07-19 Thread Daniel Mauricio Patino León
Should be great if we can use a proxy on a UiBinder template with the ui:with I tryed to do it, but i get a error. public class VerPresupuestos extends TabItem PacienteProxy pacienteProxy; public VerPresupuestos(final PacienteProxy pacienteProxy) { this.pacienteProxy = pacienteProxy;

AbstractCell use

2012-07-19 Thread NotChris
We are using a combination of GWT and Ext-GWT 3.0 and we are in the process of converting from GXT 2.1 to Ext-GWT 3.0. The application uses a 3.0 grid with various columns to represent the data. One of the columns contains an icon which when moused over should display an image as a tooltip

Invoking the entry point create new Session if WebCastellum is used

2012-07-19 Thread Rasha ElSayed
Hi I am using GWT 2.4 and I am facing strange problem My application is based on spring webflow, my page is entered using webflow then it initiates GWT entry point to draw some controls I am also using WebCastellum security proxy The problem is everytime I enter my page a new session is

Re: DevMode for Firefox 14

2012-07-19 Thread Jeremy Kittel
Hi Alan, I might be asking the wrong person, but any chance of compiling a mac version of the updated plugin for FF 14? Thanks, Jeremy On Tuesday, July 17, 2012 7:08:06 PM UTC-5, Alan Leung wrote: While I am technically no longer on the team, I got curious and started looking at the FF14

Re: DevMode not working in Chrome after update

2012-07-19 Thread Jonathan Fuerth
On Tuesday, 17 July 2012 15:14:44 UTC-4, Thomas Broyer wrote: On Tuesday, July 17, 2012 8:21:36 PM UTC+2, Andy wrote: I still get the error Could not load GWT DevMode Plugin and the normal offer to download it (even though it was and is again installed). Make sure click to play (or some

GWT with Spring Webflow

2012-07-19 Thread Inko37
Hey, is it possible to use GWT and Spring Webflow? I don't know if there are any problems with the asynchronous calls. If it will work, is there any ready solution for it? Or is there any other solution to manage the webflow with GWT? best regards, Inko -- You received this message because

AutoBean Category Implementation Inheritance

2012-07-19 Thread Benjamin DeLillo
When using AutoBean Categories Given: I have two interfaces, A and B B extends A I have a Category class for each, ACategory and BCategory I have an @Category annotation on my ObjectFactory for each Question: will the AutoBean produced by factory.b() have the methods

How to implement loops in render method of new UiRenderer feature

2012-07-19 Thread Piotr Janik
Hi there, I know that gwt templates don't support loops. However, I'd like to have a loop in a render() method. Let's say I have this simple UiRenderer template: ui:UiBinder xmlns:ui=urn:ui:com.google.gwt.uibinder ui:with field='name' type='java.lang.String' / div id=main

Re: Shopping Cart OpenSource using GWT

2012-07-19 Thread [MVVG] Saif
Anyone have opinions on this? What shopping cart do people use with GWT or SmartGWT? KonaKart and SoftSlate seem to be the main Java players in this space, but they seem too heavy, I'd prefer something simple I can integrate with GWT. Any thoughts? On Thursday, June 28, 2012 4:23:15 AM

Removing Grouping separator in FormUiTextBoxInteger

2012-07-19 Thread Sumana
Hi, By default, the value in the FormUiTextBoxInteger is loaded with , separator. I want to remove it from the FormUiTextBoxInteger. Is there any way to remove it? Thanks. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this

Re: DevMode not working in Chrome after update

2012-07-19 Thread francesco foresti
*I'm experiencing* this issue as *well. The Chrome configuration for plugins is set on run automatically (or something similar, the UI is in italian).* One thing I've noticed is that when activating the click to play setting, Chrome won't notify that the GWT plugin can't be loaded, and will

ODK Aggregate Server

2012-07-19 Thread Jennifer Cheong
Hi, I cannot connect to the ODK Aggregate Server. It kept linking me to Web Application Starter Project shown as the Error.png. How do I go to the server? As I can go in initially, but I do not know what happen which link me to Web Application Starter Project. I want to go to the Server

Running Weka server-side and communicating via RPC

2012-07-19 Thread William Ibekwe
I am experiencing these errors: when I run my Weka program on the server side and try to communicate with it using RPC. Problem instantiating package manager. Using DefaultPackageManager. Jul 18, 2012 6:20:19 PM com.google.appengine.tools.development.ApiProxyLocalImpl log SEVERE:

Re: GWT RPC not working behind Apache and Tomcat

2012-07-19 Thread Mads Ravn
From the lack of extra information, I gather you weren't successful in forcing your friend. On Wednesday, February 29, 2012 7:22:43 PM UTC+1, mukarev wrote: Hi again, a friend of mine solved the problem during the night. I will force him to write the solution here. Thanks for your

Re: DevMode for Firefox 14

2012-07-19 Thread Alan Leung
http://acleung.com/ff14-win.xpi So far so good.one more to go (mac) -Alan On Wed, Jul 18, 2012 at 9:57 AM, Jeremy Kittel jeremy.kit...@gm.mediabeacon.com wrote: Hi Alan, I might be asking the wrong person, but any chance of compiling a mac version of the updated plugin for FF 14?

Re: DevMode for Firefox 14

2012-07-19 Thread Juan Pablo Gardella
Thanks Alan!!! 2012/7/19 Alan Leung acle...@google.com http://acleung.com/ff14-win.xpi So far so good.one more to go (mac) -Alan On Wed, Jul 18, 2012 at 9:57 AM, Jeremy Kittel jeremy.kit...@gm.mediabeacon.com wrote: Hi Alan, I might be asking the wrong person, but any chance of

Re: DevMode for Firefox 14

2012-07-19 Thread Samyem Tuladhar
What I mean is it is extremely annoying to be working with GWT when the plugin keeps constantly breaking. Whatever it takes to fix this situation would make everyone's life easy. The environment we got is Win32/XP on Firefox and when it automatically updates, time and again, it's extremely

Re: DevMode for Firefox 14

2012-07-19 Thread coderinabstract
Same problem with last Chrome update earlier this morning... dev mode does not work... any pointers.. tried reinstalling with chrome://extensions drop-in, redoing everything, whitelisting ips the works... keeps on wanting to reinstall.. completely broken with Chrome and also have noticed some

Re: GWT with Spring Webflow

2012-07-19 Thread Natanael Maldonado
May be this helps you: http://www.springbyexample.org/examples/simple-gwt-spring-webapp.html 2012/7/18 Inko37 inkognito133...@googlemail.com Hey, is it possible to use GWT and Spring Webflow? I don't know if there are any problems with the asynchronous calls. If it will work, is there any

Re: DevMode for Firefox 14

2012-07-19 Thread Ed Bras
Thanks Alan, it works fine. -- 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-toolkit@googlegroups.com. To unsubscribe from this group, send email to

Re: DevMode for Firefox 14

2012-07-19 Thread Gal Dolber
The Chrome plugin has been broken for a long time and for FF just disable automatic updates and update manually when the plugin gets updated. Also now there's superdevmode, that unless your project is really big works really good, in every browser and I'm even using it on the iPad. Complaining

Re: Code Formatting/Highlights for GWT Group Postings?

2012-07-19 Thread Joseph Lust
I think my daily visits to GitHub just dropped 90%. Thanks! Joe -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/dEalpSFWlkwJ. To post to this

Dev Mode with latest Chrome update - gwt plugin problem

2012-07-19 Thread coderinabstract
After today morning Chrome update on the dev version... Version 22.0.1207.1 dev Dev mode has stopped working and keeps on asking to reinstall. Have tried everything from re-install with chrome://extensions drop-in, re-whitelist ips, clear all history etc and no luck. Saw one other person

Re: import common style rules?

2012-07-19 Thread Thomas Broyer
On Thursday, July 19, 2012 8:25:29 PM UTC+2, Ed wrote: could automatically have .parent.child concatenated for you to parent child to be returned when you ask for the class name. However, @Joseph: that's not even such a bad idea. Indeed you could use a Delegator class that implements

Re: Dev Mode with latest Chrome update - gwt plugin problem

2012-07-19 Thread Thomas Broyer
On Thursday, July 19, 2012 11:52:45 PM UTC+2, coderinabstract wrote: After today morning Chrome update on the dev version... Version 22.0.1207.1 dev Dev mode has stopped working and keeps on asking to reinstall. Have tried everything from re-install with chrome://extensions drop-in,

Re: Regarding GWT with the upcoming Windows 8 and Internet Explorer 10

2012-07-19 Thread Thomas Broyer
On Thursday, July 19, 2012 8:05:49 PM UTC+2, Chak Lai wrote: It has been confirm that the release date for Windows 8 is October 26, 2012. Windows 8 also includes the next version of its browser: Internet Explorer 10. Will GWT 2.5 (final release) support IE10? No. But maybe 2.5.1,

Re: Use RequestFactoryProxy on UiBinder Template.

2012-07-19 Thread Daniel Mauricio Patino León
Yhea! this rocks! I missed the @UiField(provided=true) Nice, its better to do at this way than change in code. Thank you thomas. 2012/7/19 Thomas Broyer t.bro...@gmail.com I don't see the @UiField(provided=true) on the pacienteProxy field on your code. On Thursday, July 19, 2012 8:37:23

Re: TextResource vs Constant

2012-07-19 Thread Joseph Lust
You can mix and match too, as I've see properties files being used to fill Maps the messages interfaces too. One note however, is that if you place to internationalize a bunch of strings, then you just need to have a .properties file translated and add the language permutation to your module.

Re: Dev Mode with latest Chrome update - gwt plugin problem

2012-07-19 Thread coderinabstract
Thanks Thomas.. must be something in my environment.. and by the way congratulations to you for the honor in becoming a member of the GWT steering committee... very well deserved. On Thursday, July 19, 2012 6:03:34 PM UTC-4, Thomas Broyer wrote: On Thursday, July 19, 2012 11:52:45 PM

Re: Regarding GWT with the upcoming Windows 8 and Internet Explorer 10

2012-07-19 Thread Chak Lai
Thank you for the reply. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/EgXriYXO_hsJ. To post to this group, send email to

Re: Dev Mode with latest Chrome update - gwt plugin problem

2012-07-19 Thread coderinabstract
For anybody experiencing this I got it to work with the following... -- I had a very old dev mode version which was getting updated for the past few years.. something must have happened to it during an update cycle in my environment. --Deleted all Chrome installs from my Mac --Re-installed the

[gwt-contrib] Re: java.lang.String: adding support for certain regexp embedded java flags (issue1784803)

2012-07-19 Thread t . broyer
I didn't check, but when is StringJreTest launched? Shouldn't it be part of a TestSuite? (also, please CC google-web-toolkit-contributors@googlegroups.com in your reviews; I think you have to join the group first, but you should be prepared to receive answers there too anyway).

[gwt-contrib] SuggestBox causes native events to fire twice (issue1785803)

2012-07-19 Thread tuckerpmt
Reviewers: , Description: Issue 3533 Please review this at http://gwt-code-reviews.appspot.com/1785803/ Affected files: user/src/com/google/gwt/user/client/ui/SuggestBox.java Index: user/src/com/google/gwt/user/client/ui/SuggestBox.java

[gwt-contrib] Re: SuggestBox causes native events to fire twice (issue1785803)

2012-07-19 Thread tuckerpmt
On 2012/07/19 20:27:56, Patrick Tucker wrote: http://code.google.com/p/google-web-toolkit/issues/detail?id=3533 http://gwt-code-reviews.appspot.com/1785803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: SuggestBox causes native events to fire twice (issue1785803)

2012-07-19 Thread t . broyer
LGTM http://gwt-code-reviews.appspot.com/1785803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Add multiple attribute to InputElement / FileUpload widget to enable the HTML5 multiple attribute. (issue1786803)

2012-07-19 Thread skybrian
LGTM http://gwt-code-reviews.appspot.com/1786803/diff/1/user/test/com/google/gwt/dom/DOMSuite.java File user/test/com/google/gwt/dom/DOMSuite.java (right): http://gwt-code-reviews.appspot.com/1786803/diff/1/user/test/com/google/gwt/dom/DOMSuite.java#newcode47

[gwt-contrib] Re: Add multiple attribute to InputElement / FileUpload widget to enable the HTML5 multiple attribute. (issue1786803)

2012-07-19 Thread skybrian
So one gotcha is that IE apparently doesn't support this attribute: http://www.w3schools.com/html5/att_input_multiple.asp I don't have a Windows box handy, but I did some web searches and apparently that was still true in IE 9. So I wonder if this is still useful for your use case?

[gwt-contrib] Re: Add multiple attribute to InputElement / FileUpload widget to enable the HTML5 multiple attribute. (issue1786803)

2012-07-19 Thread Brian Slesinsky
Hmm... if we put it in, we at least would need to document that it's not supported by all browsers and skip the tests when we run them on IE. But given the limited browser support, I think it might be better to leave it out of the public API, so as not to mislead anyone. As a workaround, perhaps