Examples of copyOptionListValueFrom()


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

    sourcePage.copyMediaValueTo("templateElementName", targetPage);
    MediaElement targetMediaElement = targetPage.getMediaElement("templateElementName");
    sourcePage.copyMediaValueTo("sourceTemplateElementName", targetMediaElement);
   
    // option list
    targetPage.copyOptionListValueFrom("templateElementName", sourcePage);
    sourcePage.copyOptionListValueTo("templateElementName", targetPage);
    OptionList targetOptionList = targetPage.getOptionList("listTemplateElementName");
    sourcePage.copyOptionListValueTo("sourceTemplateElementName", targetOptionList);
   
    // standard field date
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.