+$(document).ready (function (){
+ $("#birthday").focusout (function (){
+ alert("focusout");
+
+ var element = $(this);
+ $.ajax ({
+ url: '/zakformtests/cgi_validate',
+ data: 'f=' + $(this).attr('name') + '&v=' + $(this).val(),
+ type: 'get',
+ success: function (data) {
+ alert (data + element.attr('name'));
+ $("#spanMsg_" + element.attr('name')).remove();
+ if (data != '')
+ {
+ element.addClass("is-invalid");
+ element.parent().append("<span id=\"spanMsg_" + element.attr('name') + "\" class=\"invalid-feedback\">" + data + "</span>");
+ }
+ }
+ });
+ });
+});
+
function click_add ()
{
alert ("add");
--- /dev/null
+/*
+ * Copyright (C) 2016-2020 Andrea Zagli <azagli@libero.it>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#ifdef HAVE_CONFIG_H
+ #include <config.h>
+#endif
+
+#include <unistd.h>
+#include <locale.h>
+
+#include <libzakcgi/libzakcgi.h>
+#include <libzakform/libzakform.h>
+#include <libzakformcgi/libzakformcgi.h>
+#include <libzakutils/libzakutils.h>
+
+int
+main (int argc, char *argv[])
+{
+ ZakCgiMain *zakcgimain;
+
+ GString *str;
+
+ GValue *val;
+ gchar *field;
+ gchar *value;
+
+ ZakFormCgiForm *form;
+
+ ZakFormElement *element;
+
+ setlocale (LC_ALL, "");
+
+ zakcgimain = zak_cgi_main_new ();
+
+ str = g_string_new ("");
+
+ val = zak_cgi_main_get_parameter (zakcgimain, "f");
+ if (val != NULL)
+ {
+ field = (gchar *)g_value_get_string (val);
+ g_warning ("RET field %s", field);
+ }
+ else
+ {
+ g_warning ("RET no field");
+ zak_cgi_main_out (NULL, str->str);
+ return 0;
+ }
+
+ val = zak_cgi_main_get_parameter (zakcgimain, "v");
+ if (val != NULL)
+ {
+ value = (gchar *)g_value_get_string (val);
+ g_warning ("RET value %s", value);
+ }
+ else
+ {
+ g_warning ("RET no value");
+ zak_cgi_main_out (NULL, str->str);
+ return 0;
+ }
+
+ form = zak_form_cgi_form_new (zakcgimain,
+ NULL);
+
+ if (zak_form_form_load_from_file (ZAK_FORM_FORM (form), XMLDIR "/cgi.xml"))
+ {
+ element = zak_form_form_get_element_by_id (ZAK_FORM_FORM (form), field);
+ if (element != NULL)
+ {
+ zak_form_cgi_form_element_bind (ZAK_FORM_CGI_FORM_ELEMENT (element), zak_utils_gvalue_new_string (value));
+ if (!zak_form_element_is_valid (element))
+ {
+ g_warning ("RET not valid");
+
+ guint i;
+ GPtrArray *messages = zak_form_element_get_messages (element);
+
+ for (i = 0; i < messages->len; i++)
+ {
+ g_string_append_printf (str, "%s<br/>\n", (gchar *)g_ptr_array_index (messages, i));
+ }
+ }
+ }
+ else
+ {
+ g_string_append_printf (str, "Element «%s» not found", field);
+ }
+ }
+ g_warning("RET %s",str->str);
+ zak_cgi_main_out (NULL, str->str);
+
+ return 0;
+}