Package org.projectforge.web.wicket.flowlayout

Examples of org.projectforge.web.wicket.flowlayout.FieldType


      fieldProperties.setValueAsString(valueString);
    }
    final WebMarkupContainer row = new WebMarkupContainer(rows.newChildId());
    rows.add(row);
    row.add(new Label("label", getString(fieldProperties.getLabel())));
    final FieldType type = fieldProperties.getFieldType();
    if (type == FieldType.WEB_PAGE) {
      row.add(new ActionLinkPanel("value", ActionLinkType.EXTERNAL_URL, valueString));
    } else if (type == FieldType.PHONE_NO) {
      row.add(new ActionLinkPanel("value", ActionLinkType.CALL, valueString));
    } else if (type == FieldType.MOBILE_PHONE_NO) {
View Full Code Here

TOP

Related Classes of org.projectforge.web.wicket.flowlayout.FieldType

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.