Package com.claymus.gwt.form.fields

Examples of com.claymus.gwt.form.fields.ListBoxFormField


  @Override
  public final void onModuleLoad(){
    this.form = new Form();

    this.location = new ListBoxFormField("Location", true, null);
    this.visibleTo = new RoleSelectFormField("Visible To", true, null);

    for(FormField<?> field : getFields())
      this.form.addField(field);
View Full Code Here


  @Override
  public final void onModuleLoad() {
    this.form = new Form();

    this.location = new ListBoxFormField("Location", true, null);
    this.visibleTo = new RoleSelectFormField("Visible To", false, null);

    this.visibleAt = new MultiTextFormField("Visible At", false, "Enter one URL per line.");
    this.notVisibleAt = new MultiTextFormField("Not Visible At", false, "Enter one URL per line.");
View Full Code Here

    this.uriField = new TextBoxFormField (
        "Page Uri", true,
        "Must start with a '/' and should not have a triling '/'. Allowed charaters are [a-z A-Z 0-9 - /].",
        FormField.PUBLIC_URI_REGEX);

    this.layoutField = new ListBoxFormField (
        "Layout", true, null);

    this.form.addField(this.titleField);
    this.form.addField(this.uriField);
    this.form.addField(this.layoutField);
View Full Code Here

TOP

Related Classes of com.claymus.gwt.form.fields.ListBoxFormField

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.