Examples of addSetOptionListValue()


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

    if (requesterUserId.length() == 0) {
      page.addDeleteStandardFieldTextValue(getParameter("requesterUserIdTmpltElemName"));
    } else {
      page.addSetStandardFieldTextValue(getParameter("requesterUserIdTmpltElemName"), requesterUserId.toLowerCase());
    }
    page.addSetOptionListValue(getParameter("responsibleIdTypeTmpltElemName"), responsibleType);
    // convert a personal user id always to lower case
    if (responsibleType.equals(getParameter("responsibleIdTypePersonValue"))) {
      responsibleId = responsibleId.toLowerCase();
    }
    page.addSetStandardFieldTextValue(getParameter("respIdTmpltElemName"), responsibleId);
View Full Code Here

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

    Page currentPg = project.getPageById("4711");
    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");
   
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.