The GWT Editor framework lets you map data stored in an object graph to a set of editors (the UI). It saves you a lot from writing boiler plate code that binds data to the UI and vice versa. It allows you to even use Request Factory Proxies seamlessly.

learn more… | top users | synonyms

0
votes
0answers
14 views

GWT ListEditor with polymorphic types - impossible to update

My problem is almost the same as this one : ListEditor with polymorphic types Thomas had a good answer, but it is not enough for me. I want to display list of objects that could be differents, so ...
1
vote
0answers
42 views

GWT editor: use different editor dynamically

I use GWT Editorto edit a EntityProxy, i'd like to use different editors to edit a string field dynamically, there is a editorType field in the proxy, UI use different editor type based one the ...
0
votes
0answers
60 views

GWT-Editors with JPA and one to many

My object contains a one to many relation public class Person implements Serializable { //bi-directional many-to-one association to Address @OneToMany(mappedBy="person", ...
0
votes
2answers
103 views

How to setConstraintViolations on EditorDriver using return value of client side Validator Validate method call

Using GWT 2.5.0, I would like to use Client side validation and Editors. I encounter the following error when trying to pass the ConstraintViolation java.util.Set to the EditorDriver as follows. ...
0
votes
1answer
122 views

GWT-Editors and sub-editors

I'm trying to run an example of Editors with sub-editors. When flushing the parent the value of child editor is null. The classes are Person and Address. The main editor is: // editor fields ...
1
vote
1answer
36 views

Is it possible to have two different EditorDrivers simultaneously editing the same object?

In my app, I have a presenter (Presenter1) which I use to kick off an Editor (EditorView1) which edits a Foo object. This MVP setup is akin to what is described in this answer, ...
0
votes
1answer
68 views

How can I have two editors for the same property on a switch?

I am trying to create an editor where the user can either select an existing item or create a new one inline. For example, imagine the typical person-address relationship. I want a form where the ...
0
votes
0answers
91 views

NPE when using setter on List in DataNucleus-AppEngine

I have entities A, B, C where: - A has a list of owned Bs - B has a list of unowned Cs - C has a list of unowned Bs I'm running into a problem when setting a list of C's on a B object, in JDO. When I ...
2
votes
1answer
211 views

Request Factory GWT editor change isn't persisting related JDO entities

I'm using (and new to) RequestFactory in GWT 2.5, with JDO entities with a one-to-many relationship, on AppEngine datastore. I've just started using the GWT RequestFactoryEditorDriver to display/edit ...
1
vote
1answer
204 views

How must one use a ListEditor as a child of another Editor?

I am using GWT 2.5.0 My intent was to create an editor hierarchy which binds to a ParentBean object. The ParentBean contains a List<Group>, and the Group bean has a List<ChildBean> and ...
1
vote
0answers
122 views

GWT DateBox and EditorErrors

What is the best way to generate/participate in validaton with EditorErrors when a DateBox which is bound to a driver gets invalid format string. Currently, in DatePicker, it marks the field red, ...
0
votes
1answer
253 views

GWT editors: show ConstraintViolations AND EditorErrors

I'm having a hard time to achieve that GWT editors show possible ConstraintViolations and EditorErrors at the same time. It's no problem to either show the errors or the validation violations. The ...
0
votes
1answer
52 views

GWT Editor: How to set last modified time on the entity when saved?

Suppose at client side i have an Entity proxy to edit by the UI and when i click save button, the last modified time is save in the entity proxy as a field. //start MyEntityProxy proxy = ...
2
votes
1answer
165 views

GWT: ListEditor incorrectly tries to validate entities removed form the list

The problem is that ContactDocuments removed with editor.getList().remove(index) are still passed for validation making it impossible to save edited Contact. For example requestContext.save() will ...
0
votes
1answer
163 views

GWT Editors - how to add N sub-editors of the same type based on a Collection

I have an object, Supply, that can either be an ElecSupply or GasSupply (see related question). Regardless of which subclass is being edited, they all have a list of BillingPeriods. I now need to ...
0
votes
2answers
234 views

How to implement GWT editors for subclasses of a type?

Let's say I have an object hierarchy like this: Account > Site > Supply An Account is an actual company, a Site is a building they have, and a Supply is either an ElecSupply or GasSupply. Supply is ...
0
votes
1answer
115 views

GWT Editor frame work

Its normal when i use a DoubleBox in a Editor to edit a double property (RequestFactoryEditorDriver) if i clear the value of the box i get a null pointer exception? If so how can i validate a ...
1
vote
2answers
466 views

GWT Editor and GXT Grid Not Sending Newly Created Proxy Entities, Only NULL Values

Does anybody have a solution to why I would be saving nulls to a OneToMany List on a server entity through a GXT Grid that contains a ListStoreEditor sub-editor? I've followed the Sencha Example, ...
2
votes
1answer
678 views

Showing GWT validation errors using Editor Framework

I do GWT client side validation and I've a problem of how to show validation errors which are returned by validator. I debugged it and I can see that the set contains errors but driver doesn't show ...
1
vote
0answers
316 views

GWT requestFactory + editor framework reloading associated entity

I am using GWT 2.5rc1 with RequestFactory and the Editor framework. When I save an entity with an associated model, the server's Locator reloads the associated model before saving. Thus, any changes ...
0
votes
2answers
58 views

Implement NullableSetEditor by wrapping a NullalbleListEditor

I have a working NullableStringListEditor implementation: public class NullableStringListEditor extends Composite implements IsEditor<OptionalFieldEditor< List<String>, ...
0
votes
2answers
141 views

Weird behavior of of OptionalFieldEditor

I am using the following editor to support a nullable list: public class NullableListEditor<T, E extends Editor<T>> extends Composite implements IsEditor<OptionalFieldEditor< ...
0
votes
0answers
101 views

How do you set the RequestContext in an IsEditor managed by a RequestFactoryEditorDriver?

I am having trouble with the RequestFactoryEditorDriver and a ListEditor. When adding entities, the editor requires a RequestContext, but the context is not being set and causes a NullException. To ...
0
votes
1answer
129 views

Create an editor decorator for a checkbox field

I'd like to have something like the ValueBoxEditorDecorator for checkbox fields. As CheckBox doesn't extend ValueBoxBase, I need to create my own. So I start coding it by adapting the ...
0
votes
0answers
49 views

activties in GWT editor hirarchy

I have an editor hirarchy for a model like this : class Foo{ @OneToMany(cascade={CascadeType.ALL},orphanRemoval=true) List<Bar> barList; } class Bar{ Foo foo; @ManyToOne ...
2
votes
1answer
239 views

ListEditor with polymorphic types

I have searched around and been trying to figure out if I can use the editor framework with polymorphic types. I found this post at Using GWT Editors with a complex usecase which is close to what I am ...
0
votes
1answer
130 views

RequestFactoryEditorDriver#getPaths() usage?

HI: Below code is from RequestFactoryEditorDriver: /** * Returns a new array containing the request paths. * * @return an array of Strings */ String[] getPaths(); My question is, ...
0
votes
0answers
78 views

changing an entity proxy within request in GWT editor framework

I try to build an application based on spring-roo generated GWT code. now I want to do this scenario. class Foo{ List<Bar> barList; } class Bar{ Foo foo; } and barList is owned entity ...
1
vote
2answers
605 views

GWT Editors for readonly and edit mode

GWT's Editor framework is really handy and it can not only be used for editing POJOs but also for read-only display. However I am not entirely sure what the best practice is for doing inline ...
4
votes
2answers
437 views

How to edit a Set<? extends EntityProxy> with GWT Editor framework?

for sake of simplicity: public class Person { String name; Set<Address> addresses; } public class Address { String city; String street; } with and matching public ...
2
votes
3answers
983 views

How to use GWT's Editor Framework with gwt-platform?

I'm using gwt-platform and tried to implement GWT's editor framework. But I don't get it working from within the presenter. There are some answers around the web, that say I have to inject the ...
0
votes
0answers
134 views

How do you integrate server-generated validation errors with SimpleBeanEditorDriver

I am trying to integrate the GWT Editor framework with a rest-based back end service. The service generates validation errors, which I map to an iterable collection of ConstraintViolation. But ...
0
votes
1answer
243 views

GWT Editor Framework, how to implement an effective reuse of the editor

In many cases I have the same panel which edits a set of properties that are common to different DTOs. So I want to have this panels defined only once and reuse so I came up with the following ...
-1
votes
1answer
108 views

Gwt Editor framework for interfaces

I am trying to implement gwt editor framework. I have created a driver as follows: final Driver driver = GWT.create(Driver.class); ABC is my class and I am passing object of my ABC class to ...
0
votes
2answers
216 views

Adding list sub-editors to tab panel

I use ListEditor to allow editing list of chilren and I do everything just like I saw in some examples.The only difference from examples is that I want widgets editing children to be added as a tabs ...
1
vote
1answer
168 views

GWT editor onPropertyChange

How do I use ValueAwareEditor.onPropertyChange? Is this feature implemented already? It is not being called when editor property changes. Also I don't see if this method is being called anywhere in ...
3
votes
1answer
299 views

How to get access to underlying POJO from GWT Editor class

I have a HashMap inside my POJO that I am using the Editor framework in GWT to edit. While I have access to the standard member variables bound through thier getters/setters, I don't know how to ...
0
votes
1answer
178 views

GWT Editor Framework, what is the correct Editor Interface to provides Editor support to this complex use case

I have a TabPanel wdget that will have an unknow number of TabItems widgets each of them will have an unknow number of FieldSet classes each of them implements Editor<Foo> TabItem class has ...
0
votes
0answers
107 views

Should ErrorCollector (which is part of JSR-303 functionality) in GWT 2.4 be redesigned?

I know this question is not about particular problem I have. It's rather question to GWT SDK team. As far as I remember StackOverflow is now their official communication channel with engineering ...
0
votes
1answer
279 views

How can I disable ValueBoxEditorDecorator<String>?

I'd like to have read-only editor so I disable every control in it. But I can't do that with ValueBoxEditorDecorator. Do you guys have any ideas how I can disable it ? There is ValueBoxBase<T> ...
0
votes
1answer
1k views

Binding a bean property to a TextField in GXT 3.0

I am working on a ExtGWT 3.0 (beta) application. I have a simple Java bean containing one property: public class MyBean { private String content; // getter and setter here... } I want to ...
0
votes
2answers
600 views

How do you do nested Editors in GWT2?

Сould you please give me working example of nested editors ? I've read this document but it didn't help me. In my code I have class Person and Organization. Organization has field contactPerson of a ...
0
votes
1answer
226 views

GWT Popup with Editor Framework

In a simple inventory management app i have an activity to handle assigning equipment types to employees (if a user checks something out). What i am wondering is this: Currently i have drag and drop ...
1
vote
1answer
765 views

GWT Editor use IsEditor<LeafValueEditor<Date>> to populate Long field

I just got the hang of using the Editor framework and am porting over all my forms to use it. I'm running into some trouble on my Event form. I have 5 different time fields - for each field I use a ...
1
vote
1answer
449 views

Editor not getting ListBox changes

Issue: On load of a form, ParentEditor, a sub-editor, ThisEditor, properly popluates all its fields including a listbox(dropdown) widget, MyWidget. However,if I select a new option in the listbox and ...
1
vote
1answer
577 views

GWT RequestFactory, Editors - working with tree-like structures

Let's say we have a domain entity defined this way: interface MyNode { MyNode getParent(); void setParent(MyNode node); List<MyNode> GetChildren(); void AddChild(MyNode node); void ...
0
votes
1answer
1k views

GWT Editors framework - ListEditor, removing items, MVP violation

public class PersonListEditor extends Composite implements IsEditor<ListEditor<Person, PersonListItemWidget>> { private static PersonListEditorUiBinder uiBinder = ...
0
votes
1answer
168 views

GWT heterogenous lists in editors framework

There's a class hierarchy like this: interface Item { } interface ItemType1 extends Item { String getItemType1Data(); } interface ItemType2 extends Item { String getItemType2Data(); } I have ...
4
votes
1answer
2k views

GWT List editor binding

public interface Person { String getName(); void setName(String name); List<PersonFriend> getFriends(); } public interface PersonFriend { String getName(); } I'm trying to ...
0
votes
1answer
213 views

How to style GWT Editor errors

I am using the GWT 2.4 Editor framework. I have everything working with errors displaying, but I am not sure how to style the errors! It looks like the styles are part of a CssResource as they are ...

1 2