Package com.claymus.gwt.form.fields

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


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

    this.titleField = new TextBoxFormField (
        "Page Title", false, null);

    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 (
View Full Code Here

TOP

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

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.