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
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
>
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
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
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
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
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
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
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
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(
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
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
12 matches
Mail list logo