Package org.molgenis.framework.ui.html

Examples of org.molgenis.framework.ui.html.Paragraph


  {
    List<HtmlInput<?>> inputs = new ArrayList<HtmlInput<?>>();

    if (this.selectedIds == null || this.selectedIds.size() == 0)
    {
      Paragraph t = new Paragraph("No records were selected for updating.");
      t.setDescription("Error.");
      inputs.add(t);
      return inputs;
    }

    Paragraph t = new Paragraph("Selected ids:" + this.selectedIds.toString());
    t.setDescription("The IDs you have selected for updating.");
    inputs.add(t);

    // put ids of selected rows in hidden field
    for (Object id : this.selectedIds)
    {
View Full Code Here

TOP

Related Classes of org.molgenis.framework.ui.html.Paragraph

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.