gwt-editors Questions
0
I want to use the GWT Editor framework with a CellList. My data model looks like this:
public class CarDto {
private String name;
private List<String> features;
// getter and setter
}
...
Rufus asked 29/1, 2016 at 17:20
0
I've following class hierarchy.
class A {
String id;
@NotEmpty(message="Title can't be empty")
String title;
String description;
String comments;
}
class B extends A {
String manufacturer;
...
Wessling asked 30/10, 2014 at 14:58
2
Solved
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.
...
Mons asked 14/2, 2013 at 15:40
1
Solved
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...
Bridgehead asked 6/12, 2012 at 16:54
2
Solved
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 ...
Farman asked 12/11, 2012 at 15:16
3
Solved
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 Edit...
Encage asked 22/5, 2012 at 1:6
2
Solved
for sake of simplicity:
public class Person
{
String name;
Set<Address> addresses;
}
public class Address
{
String city;
String street;
}
with and matching
public interface Perso...
Consequential asked 26/5, 2012 at 1:37
4
Solved
I'm trying to create a page which is very similar to the Google Form creation page.
This is how I am attempting to model it using the GWT MVP framework (Places and Activities), and Editors.
Cre...
Rooseveltroost asked 12/8, 2011 at 17:9
1
Solved
public class PersonListEditor extends Composite implements IsEditor<ListEditor<Person, PersonListItemWidget>> {
private static PersonListEditorUiBinder uiBinder = GWT.create(PersonList...
Sydel asked 27/10, 2011 at 9:40
1
Solved
public interface Person {
String getName();
void setName(String name);
List<PersonFriend> getFriends();
}
public interface PersonFriend {
String getName();
}
I'm trying to implement a ...
Kwarteng asked 22/10, 2011 at 12:7
0
See the orignal question for context.
Additional Context:
Objectify-Appengine is used for persistence.
FormProxy and QuestionProxy are of type EntityProxy
QuestionDataProxy and its subtypes are...
Bidarka asked 17/8, 2011 at 15:38
1
© 2022 - 2024 — McMap. All rights reserved.