Re: Thoughts on GWT 3.0 re: Java 8 and IE 8/9

2013-10-25 Thread Ed
> > We're thinking about introducing a way of developing UI that is more like > traditional HTML design, you create HTML, CSS, and then attach behavior via > Java. UiBinder is sort of like this, but it is not Can't wait ... Would love seeing this... I feel the pain: a company abroad makes the

Re: BUG? GWT modules inherit: filepath vs classpath

2013-10-25 Thread Jens
Thats expected. The GWT compiler scans it's classpath during compilation and thus it can not have any notion of projects. Change your gwt.xml to or depending if you want to relocate your Datatype.gwt.xml to com/company/lib or not. -- J. -- You received this message because you are subscribe

BUG? GWT modules inherit: filepath vs classpath

2013-10-25 Thread Vassilis Virvilis
Hi everybody, I have the following situation There are 3 projects. Let's call them application_project, library_project, datatype_project. The application_project depends on the other two. However only the datatype_project project is supposed to be compiled to javascript. So the there is a

Re: Thoughts on GWT 3.0 re: Java 8 and IE 8/9

2013-10-25 Thread Ray Cromwell
We're thinking about introducing a way of developing UI that is more like traditional HTML design, you create HTML, CSS, and then attach behavior via Java. UiBinder is sort of like this, but it is not HTML and still requires building. What we want to do is follow the Web Components spec, which

Re: How to retrieve the Current Presenter in GWT or GWTP?

2013-10-25 Thread Tom
I found the answers, very simple. 1st, when opening a new link we can add a param like whichLink. Ex my.com#link1;whichLink=link1 Then in HeaderPresenter, when calling GuideDialog, we do this GuideDialogBox gDialogBox=new GuideDialogBox(placeManager.getCurrentPlaceRequest().getParameter("whi

Re: Thoughts on GWT 3.0 re: Java 8 and IE 8/9

2013-10-25 Thread Andy
Thanks Ray, I appreciate the detailed response. We do most of our rendering server-side and use very few widgets, so it sounds like we'll be fine. We don't use any panels other than FlowPanel and we use simple widgets like Hyperlink and CheckBox with a few cases of SuggestBox and our own wrappe

Re: Thoughts on GWT 3.0 re: Java 8 and IE 8/9

2013-10-25 Thread Timothy Spear
Ray, There is already two existing versions of most container components. Are you stating GWT will introduce a third? Or just migrate the Layout ones? In addition, do you know if there will be significant changes to UiBinder? Tim On Oct 25, 2013, at 1:21 PM, Ray Cromwell wrote: > > I think w

Re: Thoughts on GWT 3.0 re: Java 8 and IE 8/9

2013-10-25 Thread Ray Cromwell
I think what we're really thinking about doing is preserving IE8 for the existing gwt widget stuff, but any features (APIs) we add going forward are going to leverage modern browser stuff, and we are not going to design (poorly performing, hacky) fallback/polyfill workarounds. For GWT 3.0, we

Re: Thoughts on GWT 3.0 re: Java 8 and IE 8/9

2013-10-25 Thread Andy
Thanks for your input. It sounds like we're in the identical situation. Regarding onFailure, do you use an abstract implementation of AsyncCallback, like I mention in this post? http://stackoverflow.com/a/4725052/497700 -Andy On Friday, October 25, 2013 11:47:43 AM UTC-4, stuckagain wrote: > >

Re: Thoughts on GWT 3.0 re: Java 8 and IE 8/9

2013-10-25 Thread David
IE8/IE9 I agree, we are in the same situation. Our customers only just migrated to IE8, so that will take at least 2 years before they will move on. We could wait longer to move on to GWT 3.0, but the problem is that other customers are already asking for IE11 support. About Java8 support on the c

Re: Thoughts on GWT 3.0 re: Java 8 and IE 8/9

2013-10-25 Thread Dennis Haupt
there should be simply no frameworks which support anything below ie9 at all, so the enterprise is forced to adjust :) 2013/10/25 Andy > I just read through the notes from the GWT steering > committeeand > would like to sh

Thoughts on GWT 3.0 re: Java 8 and IE 8/9

2013-10-25 Thread Andy
I just read through the notes from the GWT steering committeeand would like to share our perspective. I know you have a lot of survey results and we're just 1 company, but here's some more info based on our needs. *Java 8 o

Re: How to retrieve the Current Presenter in GWT or GWTP?

2013-10-25 Thread Tom
More explanation, when user clicks on the GuideDialogLink, then a DialogBox will popup, it won't open new browser. So suppose u are in the link1 (my.com/link1) & u click on GuideDialogLink, then u are still in my.com/link1 & the dialogbox will show the Gui1 (say 1 button & 2 textboxes). Ok, now

Re: What happend after GWT.create()

2013-10-25 Thread Thomas Broyer
On Friday, October 25, 2013 12:33:39 PM UTC+2, Andrey Damintsev wrote: > > Hello! > I use GWT about half year. But I cant understand what happens after > GWT.create(). I read some FAQs articles and there said that occurs a > deferred bindings. Ok! But how It realised from Java. > > I start to

Header Panel not working correctly on Ipad

2013-10-25 Thread kalembi
Hi there, I am new to GWT and try to make use of the HeaderPanel for my app. However that panel does not work as expected on my IPad, As soon as I load the application in landscape mode the header widget is only partially displayed. For example if it contains a button you see only half of it (se

What happend after GWT.create()

2013-10-25 Thread Andrey Damintsev
Hello! I use GWT about half year. But I cant understand what happens after GWT.create(). I read some FAQs articles and there said that occurs a deferred bindings. Ok! But how It realised from Java. I start to read sources of ServerGwtBridge class, but cannot understand. Can somebody advice any

Re: On extension strategies for GWT applications

2013-10-25 Thread Mark Proctor
It seems like this is a common request. I wonder if there is anything the GWT team can put into the roadmap, that would allow for the compilation of a core application. Then the later compilation, aka “linking”, of other gwt code - where the user annotates things not to be pruned, so they can be

Re: DataGrid focus issue with EditTextCell

2013-10-25 Thread kibu Kuhn
Applying a selectionModel and a DefaultSelectionEventManager.BlacklistEventTranslator that excludes the column in question solves the problem. kibu Am Freitag, 25. Oktober 2013 08:49:06 UTC+2 schrieb kibu Kuhn: > > hi, > > I'm running into problems handling the focus behavior of an editable ce

How to retrieve the Current Presenter in GWT or GWTP?

2013-10-25 Thread Tom
Here is my problem. I have many links in my header presenter. Link1 - Link2 - Link3 - GuideDialogLink When user clicks on Link1 or Link2 or Link3, it will open a new browser. However, when user clicks on GuideDialogLink, then it will popup a DialogBox right on top of the current link. The Gu

Re: To add checkbox , and text box to the horizontal layout in Dynamic Form

2013-10-25 Thread chly5281750
you can use ToolStrip instead of Dynamic Form use .addFormItem(Item); 在 2009年9月30日星期三UTC+8下午8时44分49秒,Vishal写道: > > Hi , > > I just want to know how to add a checkbox and a textbox in the same > row in Dynamic Form. I mean it is not showing with proper alignment. > Please tell how to use that. S

Re: On extension strategies for GWT applications

2013-10-25 Thread Jens
> > We really need something like this too. We've developed a workbench UI, > that has plugins - all currently compile time. Would be nice to be able to > have those as runtime plugins, even if they are self contained GWT apps. As > you pointed out "you can not just simply pass those objects be

Re: SuggestBox - return single word suggest

2013-10-25 Thread Jens
You just have to create a class that implements SuggestOracle and then provide it to the SuggestBox through one of its constructors. The SuggestOracle requires a single method to be implemented. That method gives you access to the "request" the user has made (query, result limits) and the metho

Re: I am able to edit file path and/or name in FileUpload widget of GWT in IE-8.

2013-10-25 Thread Thomas Broyer
On Friday, October 25, 2013 7:10:52 AM UTC+2, Akshay Lokur wrote: > > Hey Thomas, > > Thanks for your suggestion. > Could you please let me know, how can I catch the exception which > form.submit() throws? A small code snippet would be great to understand. > try { formPanel.submit() { } catch

Re: SuggestBox - return single word suggest

2013-10-25 Thread Jostein
The question is how? Can you please point me to some examples and/or descriptions that explain how to do this? I need some more detailed advice. Thanks. -- Jostein kl. 13:13:53 UTC+2 onsdag 23. oktober 2013 skrev Jostein følgende: > > Hi, > I guess this is quite simple, but I cannot find out how

DataGrid: How to refresh a single cell ?

2013-10-25 Thread kibu Kuhn
hi, I have to refresh the content of 2 columns in a DataGrid, when the user clicks into an editable cell (EditTextCell) in another column. My current solution is when onBrowserEvent of EditTextCell handles the click event, I update the data model and let the dataProvider of the grid refresh th