Errai 4.0.0.Beta1 and UiBinder - gwt

errai-uibinder is no more available for errai 4.0 (4.0.0.Beta1) but using uibinder without the specific treatment seems to be the cause of some runtime problems at startup in my application.
Has anyone successfully used UiBinder views with Errai 4.0 ?
Thanks,
S.

I think, Errai 4.0 will no longer support UiBinder. That's because generators will not be part of GWT 3.0. And because as long as no one will rewrite the Uibinder generators and replace them with APT, it will not work.
Take a look at the blog:
http://errai-blog.blogspot.de/2016/04/errai-400beta1-released.html
Errai offers an alternative way to create UIs.

Related

GWT widget library and MVP pattern

Can someone recommend a good widget library that is compatible/easy to use with GWT's MVP pattern? I'm especially interested in a library with good chart support. Thx
I used http://code.google.com/p/gwt-mvp/ for add MVP. Not the easiest solutions but have all what you need, and added chart support manually.
Looks on Stand-alone charts in GWT

SMART Gwt Code Splitting

We are using SmartGwt 2.5 and application is very large.
I want to know is there any way to implement Code Splitting or Partial JS loading in SmartGWT.
Any pointers would be really appreciated.
You can use Gwt's code splitting directly in SmartGwt.
http://code.google.com/webtoolkit/doc/latest/DevGuideCodeSplitting.html

Is it possible to mix extjs and GWT components?

I am working with GWT2.3 version.I also found ExtJs4 framework very good and want to club the some of component of ExtJs4 in my application(GWT2.3).So I just want to know it is possible to club components of ExtJs4 with GWT application
Thanks in Adcance
Yes it is. Just add .js source to your public folder in /src. Then you can write custom JavaScript as native methods via JSNI. See more in the docs.
Why not use the GWT compatible project? http://www.sencha.com/products/extgwt/
It has the same widget library (afaik) and integrates quite nicely w/ GWT

Tutorial on setting up GWT-Validation Framework for a simple app?

I'm looking to setup the GWT-Validation Framework (client side for now) in our application, but I'm not clear from the docs what pieces I need and what goes where?
We are using GWT 2.1 and MVP. I have the inherits entry for Validation in the gwt.xml, but what goes actually goes into the View, Activity, etc... I'm not aware of any tutorials available.
Any help would be appreciated!
Aftermath:
At the time when I was trying to use it, GWT 2.1 wasn't compatible with the GWT-Validation framework. After doing more reading I found this out. I don't know if that is still the case.
I assume you are referring to the validation framework in GWT and not the gwt-validation library? If that's the case, here is a page that describes how you can do bean validation: http://code.google.com/p/google-web-toolkit/wiki/BeanValidation. If you are actually referring to the gwt-validation library, here is a page that describes how to use it:
http://code.google.com/p/gwt-validation/wiki/ConceptOfOperations
Here is a link that gives some information about the GWT Validation Framework, GWT-Validator and the authors solution, the GWT-Validation library. It is a good synopsis of the issues and why he wrote the new library with some code snippets.
The GWT Validation Library.

Does GWT and/or SmartGWT provide an implementation of CSS selectors?

I've seen GWT's getElementById, but I'm looking for something a lot more flexible/powerful. I'd prefer CSS selectors, but an XPath interface would do in a pinch. Thanks.
You may be interested in GWTQuery, a clone of JQuery's functionality (including selectors) to GWT, written by a GWT engineer.