Package org.joget.apps.form.model

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


    }
   
    @RequestMapping("/json/app/(*:appId)/(~:appVersion)/form/options")
    public void formAjaxOptions(Writer writer, @RequestParam("appId") String appId, @RequestParam(value = "appVersion", required = false) String appVersion, @RequestParam("_dv") String dependencyValue, @RequestParam("_n") String nonce, @RequestParam("_bd") String binderData) throws JSONException {
        AppDefinition appDef = appService.getAppDefinition(appId, appVersion);
        FormRowSet rowSet = FormUtil.getAjaxOptionsBinderData(dependencyValue, appDef, nonce, binderData);
       
        JSONArray jsonArray = new JSONArray();
        if (rowSet != null) {
            for (Map row : rowSet) {
                Map<String, String> data = new HashMap<String, String>();
View Full Code Here

TOP

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

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.