Re: Overlay Instruction

2014-07-14 Thread Vasu
Hi, I am also looking for the same. Let me know if you come across any such a library. [image: Pandurang Patil on about.me] Pandurang Patil about.me/pandurangpatil http://about.me/pandurangpatil website: http://www.agnie.net twitter: @agniesoftware On Wednesday, 9 July 2014 22:07:18

Re: Overlay Instruction

2014-07-14 Thread Paul Robinson
Take a look at http://eemi2010.github.io/gwt-tour/ Paul On 14 Jul 2014 08:25, Vasu pandurang.pa...@gmail.com wrote: Hi, I am also looking for the same. Let me know if you come across any such a library. [image: Pandurang Patil on about.me] Pandurang Patil about.me/pandurangpatil

Re: Overlay Instruction

2014-07-14 Thread Alain Ekambi
Hey there, I m the author of gwt-tour (that we will also move to ahome-opensource libs http://opensource.ahome-it.com/ soon.) We also have a wrapper for Jardin.js. We probably will open source it if it s useful to someone. Cheers, Alain 2014-07-14 9:35 GMT+02:00 Paul Robinson

Re: symbolMap file : wrong source line number ?

2014-07-14 Thread 'Thomas Lacroix' via Google Web Toolkit
Found it, it works. Thanks :) -- 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 to this group, send

Re: Can't Set App Engine SDK - Eclipse Plugin

2014-07-14 Thread James Nelson
ZOMG... 4 years later, and this is still the right fix!! then remember make sure that all maven jars are at bottom in order and export tab. This was BEYOND frustrating (just lost over a day on this), and all it took was putting maven on the bottom. Sigh, thank you so much. -- You

Re: how to disable backspace button in gwt?

2014-07-14 Thread Mohammed Sameen
Thanks for your reply i solved by using the below snippet code History.newItem(x); History.addValueChangeHandler(new ValueChangeHandlerString() { @Override public void onValueChange(ValueChangeEventString event) { String historyToken = event.getValue(); if (!historyToken.equals(X))

Re: update from 2.4 to 2.5 : uibinder.elementparsers.LazyPanelParser.parse(LazyPanelParser.java:40) error

2014-07-14 Thread Patrick Tucker
I just ran into this and I'm wondering why a ui:field is required? In our case, the object is self contained and after creation isn't referenced by the code that creates the object. Is this requirement really necessary?? I know the workaround is easy, its just that making us developers

Using GWT for mobile and tablet apps?

2014-07-14 Thread dhoffer
I'm inquiring what's the current status of GWT's support for mobile devices, phones and tablets. I have a use case that has to run on mobile devices and I'm wondering if I can use GWT for this. Is mgwt the way to go here? What are the best options for GWT and mobile and how viable is this?

Re: update from 2.4 to 2.5 : uibinder.elementparsers.LazyPanelParser.parse(LazyPanelParser.java:40) error

2014-07-14 Thread Thomas Broyer
On Monday, July 14, 2014 3:07:21 PM UTC+2, Patrick Tucker wrote: I just ran into this and I'm wondering why a ui:field is required? In our case, the object is self contained and after creation isn't referenced by the code that creates the object. Is this requirement really necessary??

GWT JS Interopt

2014-07-14 Thread Eder Ignatowicz
Hi, I'm starting to play with the new GWT features of JS Interopt. But unfortunately I can not make the Hello World. :/ I want to make a Java Class accessible on JS. Could anyone help me or point the right direction? My @JsType My Class: @JsNamespace($wnd.pug) public class SampleClass

Re: update from 2.4 to 2.5 : uibinder.elementparsers.LazyPanelParser.parse(LazyPanelParser.java:40) error

2014-07-14 Thread Patrick Tucker
http://code.google.com/p/google-web-toolkit/issues/detail?id=8825 -- 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

An Open Source implementation of Google Drive Realtime API

2014-07-14 Thread 田传武
Hi all, I'd like to share an open-source project which implements nearly all features of the google drive realtime api. *Google Drive Realtime API* https://developers.google.com/drive/realtime/ provides Google Docs–style instant collaboration. It lets multiple people edit the same data

Re: GWT JS Interopt

2014-07-14 Thread 田传武
Which linker do you use in your .gwt.xml module? Normally, the exported stuff will not be available in JS until your GWT app is fully loaded. On Monday, July 14, 2014 10:31:18 PM UTC+8, Eder Ignatowicz wrote: Hi, I'm starting to play with the new GWT features of JS Interopt. But

Re: GWT JS Interopt

2014-07-14 Thread 田传武
You can see a more simple example https://github.com/goodow/realtime-channel demonstrates the usages of JsExport. It only exports three interfaces, see also: https://github.com/goodow/realtime-channel/blob/master/src/main/java/com/goodow/realtime/channel/Bus.java

UiRenderer with numeric getter

2014-07-14 Thread Patrick Tucker
For some reason I can't seem to find anything on this, no group posts, nothing in the gwtproject.com tutorials, or google search. What I have is a UiRenderer that points to an Object that has a getter whose return type is Integer. When I try to use this getter in a ui:text element's for

ACE Editor for GWT

2014-07-14 Thread Alain
Hello Folks, We just open sourced the GWT wrapper for the awesome ace editor. If you are looking for a high performance web base editor for your enterprise java web projects this can be for you ! We hope it helps you like it does help us. Find more info here

Re: GWT HTML renders incorrectly

2014-07-14 Thread ehodges
Adding table-layout:fixed doesn't help. On Friday, July 11, 2014 6:17:22 PM UTC-5, Thomas Broyer wrote: Try adding a table-layout:fixed style to the table. On Friday, July 11, 2014 8:54:09 PM UTC+2, eho...@usdataworks.com wrote: Thank you SO much. It's a strict vs quirks mode thing. When

Re: UiRenderer with numeric getter

2014-07-14 Thread Jens
com.google.gwt.uibinder.elementparsers.UiTextInterpreter, line 60: String fieldRef = elem.consumeStringAttribute(from); So I would say you must use String with ui:with from=... . -- J. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Re: UiRenderer with numeric getter

2014-07-14 Thread Jens
com.google.gwt.uibinder.elementparsers.UiTextInterpreter, line 60: actually line 62 :) -- 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 emails from it, send an email to

Re: ACE Editor for GWT

2014-07-14 Thread Nagin Kothari
the link does not lead to ace editor On Mon, Jul 14, 2014 at 10:59 PM, Alain jazzmatad...@gmail.com wrote: Hello Folks, We just open sourced the GWT wrapper for the awesome ace editor. If you are looking for a high performance web base editor for your enterprise java web projects this can

Re: ACE Editor for GWT

2014-07-14 Thread Alain Ekambi
The link s about the open source project. The demo is here : http://ahome-it.github.io/ahome-client-io/ The demo also show another library called ClientIO that helps read/write files on the client. Enjoy. Alain 2014-07-14 19:48 GMT+02:00 Nagin Kothari naginkoth...@gmail.com: the link does

Re: GWT JS Interopt

2014-07-14 Thread Eder Ignatowicz
I'm using the xsiframe linker. I just pushed my POC here: https://github.com/ederign/gwt-playground/blob/master/gwt-js1/src/main/resources/me/ederign/jsinterop.gwt.xml https://github.com/ederign/gwt-playground/blob/master/gwt-js1/src/main/java/me/ederign/client/JS.java

Re: Development Mode will not be supported in Firefox 27+

2014-07-14 Thread Slava Pankov
Also on Windows it's still possible to use Chrome 36 with devmode. Download Dart (I'm using 1.5.3 distribution), and use Chromium from there (it's portable, just copy it to any folder). Also you need GWT-Developer-Plugin_v1.0.11357.crx of course, see previous post. On Friday, July 11, 2014

Re: Using GWT for mobile and tablet apps?

2014-07-14 Thread Slava Pankov
I'm using jqm4gwt for mobile development, see https://github.com/jqm4gwt/jqm4gwt It's wrapper over jQuery Mobile, but you can write Java only code of course. This week I'm planning to release new version based on the latest JQM 1.4.3 On Monday, July 14, 2014 7:09:26 AM UTC-7, dhoffer wrote:

Re: ACE Editor for GWT

2014-07-14 Thread Paul Robinson
How does this compare or relate to https://github.com/daveho/AceGWT ? On Mon, Jul 14, 2014 at 6:56 PM, Alain Ekambi jazzmatad...@gmail.com wrote: The link s about the open source project. The demo is here : http://ahome-it.github.io/ahome-client-io/ The demo also show another library called

Re: ACE Editor for GWT

2014-07-14 Thread Alain Ekambi
It s an alternative to AceGWT (actually ahome-ace got inspired from Ace GWT). But we simplified/extended the API and added support for stuff like UI Binders. Cheers. 2014-07-14 21:01 GMT+02:00 Paul Robinson ukcue...@gmail.com: How does this compare or relate to

Re: UiRenderer with numeric getter

2014-07-14 Thread Patrick Tucker
Yeah, that is what I was able to figure out. I'm hoping there is a way to convert the value to a string inline or another ui: class to use. Thanks for the response! On Monday, July 14, 2014 1:42:02 PM UTC-4, Jens wrote: com.google.gwt.uibinder.elementparsers.UiTextInterpreter, line 60:

How to make SuggestBox display scroll properly?

2014-07-14 Thread chris-x . walker
I'm working with a SuggestBox that produces a very large number of suggestions on the first one or two chanracters. I don't want an ugly list that disappears off the bottom of the screen, so I've made the selection display scroll by adding height and overflow to the CSS for

Using GWT for mobile and tablet apps?

2014-07-14 Thread marian lux
http://www.m-gwt.com -- 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 to this group, send email to

Re: How to make SuggestBox display scroll properly?

2014-07-14 Thread Juan Pablo Gardella
Maybe file a ticket + patch with the change to SuggestBox in order to make extensible. 2014-07-14 14:40 GMT-03:00 chris-x.wal...@db.com: I'm working with a SuggestBox that produces a very large number of suggestions on the first one or two chanracters. I don't want an ugly list that

The First-Time loading issue of a deployed GWT app?

2014-07-14 Thread Tom
I deployed my app and I got this issue. The first time the app got loaded, it will show a blank white page for 5-7 second which is pretty long for a good user-experience. But after that, the page show really really fast since it got cached. The problem is that when i advertised my site in

Re: GWT JS Interopt

2014-07-14 Thread 田传武
gwt-js1 disappeared and you seem to have succeeded according to your commit log. On Tuesday, July 15, 2014 2:01:45 AM UTC+8, Eder Ignatowicz wrote: I'm using the xsiframe linker. I just pushed my POC here:

[gwt-contrib] An Open Source implementation of Google Drive Realtime API

2014-07-14 Thread 田传武
Hi all, I'd like to share an open-source project which implements nearly all features of the google drive realtime api. *Google Drive Realtime API* https://developers.google.com/drive/realtime/ provides Google Docs–style instant collaboration. It lets multiple people edit the same data

Re: [gwt-contrib] Re: Dropping IE8 support in useragent-less GWT

2014-07-14 Thread Colin Alworth
Sorry for the delay in getting back to you (and to my reviews, got at least one up to date now), finally catching up after a few days off. I guess I was looking for We want to use Object.create in Core in your initial email. If we also wanted any/all of the features I had listed (fast