Package org.joget.apps.form.model

Examples of org.joget.apps.form.model.FormAction


        FormData updatedFormData = formData;
        if (element == null) {
            element = form;
        }
        if (element instanceof FormAction) {
            FormAction action = (FormAction) element;
            if (action != null) {
                boolean isActive = action.isActive(form, formData);
                if (isActive) {
                    updatedFormData = action.actionPerformed(form, formData);
                }
            }
        }
        // recurse into children
        Collection<Element> children = element.getChildren(formData);
View Full Code Here

TOP

Related Classes of org.joget.apps.form.model.FormAction

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.