Examples of addSetStandardFieldDateValue()


Examples of com.hlcl.rql.as.Page.addSetStandardFieldDateValue()

  public void setFooter(String responsibleId, String displayName, ReddotDate updated) throws RQLException {
    Page page = getPage();
    page.startSetElementValues();
    page.addSetStandardFieldTextValue(getParameter("respIdTmpltElemName"), responsibleId);
    page.addSetStandardFieldTextValue(getParameter("respNameTmpltElemName"), displayName);
    page.addSetStandardFieldDateValue(getParameter("pageUpdatedTmpltElemName"), updated);
    page.endSetElementValues();
  }

  /**
   * Changes all responsibility related elements in one step.
View Full Code Here

Examples of com.hlcl.rql.as.Page.addSetStandardFieldDateValue()

    currentPg.startSetElementValues();
   
    // 2. step
    // remember new page element values only
    currentPg.addSetOptionListValue("templateElementName", "value");
    currentPg.addSetStandardFieldDateValue("templateElementName", new ReddotDate());
    currentPg.addSetStandardFieldNumericValue("templateElementName", 20);
    currentPg.addSetStandardFieldTextValue("templateElementName", "text value");
    currentPg.addSetStandardFieldUserDefinedValue("templateElementName", "value");
   
    // 2. step
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.