Package at.reppeitsolutions.formbuilder.components.pdf.itext

Examples of at.reppeitsolutions.formbuilder.components.pdf.itext.ITextSelect


    @Override
    public Element render() {
        ITextInnerTable innerTable = new ITextInnerTable(getProperties().getOnelinedescription());
        innerTable.getDescription().addElement(new ITextParagraph(getProperties().getLabel() + getMandatoryString()));
        innerTable.getContent().setCellEvent(new ITextSelect(
                getProperties().getValues().split(";"),
                getValue(),
                isDisabled()));
        innerTable.addCells();
        return innerTable;
View Full Code Here

TOP

Related Classes of at.reppeitsolutions.formbuilder.components.pdf.itext.ITextSelect

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.