Package org.joget.apps.form.model

Examples of org.joget.apps.form.model.FormAction.actionPerformed()


        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
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.