Package org.joget.apps.form.dao

Examples of org.joget.apps.form.dao.FormDataDao.load()


                if (formDefId != null) {
                    String tableName = appService.getFormTableName(appDef, formDefId);

                    FormDataDao dao = (FormDataDao) ac.getBean("formDataDao");

                    FormRow formRow = dao.load(formDefId, tableName, value.toString());

                    if (formRow != null && formRow.getCustomProperties() != null && formRow.getCustomProperties().get(field) != null) {
                        value = formRow.getCustomProperties().get(field);
                    }
                }
View Full Code Here


                        key = formDataDao.findPrimaryKey(formDefId, tableName, fieldId, val);
                    } catch (Exception e) {
                        key = null;
                    }
                } else {
                    if (formDataDao.load(formDefId, tableName, val) != null) {
                        key = val;
                    }
                }
                if (key != null && key.trim().length() > 0) {
                    result = true;
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.