Examples of copyStandardFieldDateValueFrom()


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

    sourcePage.copyOptionListValueTo("templateElementName", targetPage);
    OptionList targetOptionList = targetPage.getOptionList("listTemplateElementName");
    sourcePage.copyOptionListValueTo("sourceTemplateElementName", targetOptionList);
   
    // standard field date
    targetPage.copyStandardFieldDateValueFrom("templateElementName", sourcePage);
    sourcePage.copyStandardFieldDateValueTo("templateElementName", targetPage);
    StandardFieldDateElement targetDateElement = targetPage.getStandardFieldDateElement("templateElementName");
    sourcePage.copyStandardFieldDateValueTo("sourceTemplateElementName", targetDateElement);
   
    // standard field numeric
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.