Editors framework: IsEditor and HasRequestContext not cooperating together

2015-08-04 Thread Gordan Krešić
Consider this common usage of ListEditor: public class BeanListEditor extends Composite implements IsEditor>, HasRequestContext> { public BeanListEditor() { /* ... */ beanListEditor = ListEditor.of(new BeanEditorSource()); /* ... */ } @Override public void setRequestContext(Reque

Re: Editors framework edit/view mode question

2012-07-15 Thread Thomas Broyer
On Saturday, July 14, 2012 9:34:36 PM UTC+2, Олександр Бежан wrote: > > I have form with editors for bean fields: > public class EditSampleView extends ViewImpl implements EditView, > Editor { > > interface Driver extends SimpleBeanEditorDriver EditSampleView> { > } > > @UiField >

Editors framework edit/view mode question

2012-07-15 Thread Олександр Бежан
I have form with editors for bean fields: public class EditSampleView extends ViewImpl implements EditView, Editor { interface Driver extends SimpleBeanEditorDriver { } @UiField TextFieldEditor country; @UiField TextFieldEditor description; @UiField DigitFieldEdit

Re: Editors Framework

2012-05-07 Thread Thomas Broyer
On Monday, May 7, 2012 8:58:04 AM UTC+2, saurabh saurabh wrote: > > Hi all, > > I have a situation here > > @Entity > @Table(name = "person", catalog = "hms") > public class Person implements java.io.Serializable { > > private int id; > private Integer version; > pr

Editors Framework

2012-05-06 Thread saurabh saurabh
Hi all, I have a situation here @Entity @Table(name = "person", catalog = "hms") public class Person implements java.io.Serializable { private int id; private Integer version; private Address addressByAddress1; private Address addressByAddress2; private St

Re: Doubt about using ValueListBox + UIBinder + Editors Framework

2011-08-11 Thread Sebastian Carrizo
Hi, i have the same problem, do you have a class documentation link or some kind of documentation about LeafValueEditor? i only could get a description. Thanks -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on t

Re: Doubt about using ValueListBox + UIBinder + Editors Framework

2011-07-19 Thread Thomas Broyer
Given that User#companyId is a Long (I guess), you have to use some kind of Editor (or an IsEditor of some kind of Editor), which ValueListBox obviously isn't. You can make it work by *not* using ValueListBox as an editor (@Editor.Ignore) and instead implement ValueAwareEditor on the parent: ex

Doubt about using ValueListBox + UIBinder + Editors Framework

2011-07-19 Thread vehdra music
Hi, I have two beans: public class User implements IsSerializable { ... private companyId; // fk to companies ... } and: public class Company implements IsSerializable { ... private Long id; private String name; ... } This is my UI Code: And this is my Java code for my ValueListBox: @UiFie

Re: Activity and Editors Framework

2011-04-14 Thread Y2i
Can you modify the view interface so that instead of ((ValueBoxBase)view.getField()).setEnable(true) you simply call view.enableField(true) -- 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-to

Activity and Editors Framework

2011-04-14 Thread dm.shodan
I´ve been working on some small projects using GWT MVP framework + GWT Editors framework. I have Views interfaces with fields declared like: @Path("field") IsEditor> getField(); Views implementations look like this: @UiField IsEditor> field; public IsEditor> getField(

Re: Client-side JSR 303 validation in editors framework. What version ?

2010-12-27 Thread Matthew Hill
It could be any post-GWT 2.1 release, hence the lack of specific version. -- 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-tool...@googlegroups.com. To unsubscribe from this group, send email

Client-side JSR 303 validation in editors framework. What version ?

2010-11-12 Thread Alexander
Hi. http://code.google.com/webtoolkit/doc/latest/DevGuideUiEditors.html says: Goals * For post-GWT 2.1 release, establish the following trajectories: o Support client-side JSR 303 Validation when it's available What is post-GWT 2.1 release. Is this 2.1.1 or 2.2.0 ? -- You received