Package org.joget.apps.form.model

Examples of org.joget.apps.form.model.FormStoreBinder.store()


            if (!(element instanceof AbstractSubForm) && binder != null) {
                FormRowSet rowSet = formData.getStoreBinderData(element.getStoreBinder());

                // execute binder
                try {
                    FormRowSet binderResult = binder.store(element, rowSet, formData);
                    formData.setStoreBinderData(binder, binderResult);
                } catch (Exception e) {
                    String formId = FormUtil.getElementParameterName(form);
                    formData.addFormError(formId, "Error storing data: " + e.getMessage());
                    LogUtil.error(FormService.class.getName(), e, "Error executing store binder");
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.