/*
- * Copyright (C) 2015-2017 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2015-2019 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
priv = ZAK_FORM_CGI_FORM_ELEMENT_GET_PRIVATE (element);
+ if (priv->id == NULL
+ || g_strcmp0 (g_strstrip (priv->id), "") == 0)
+ {
+ priv->id = g_strdup_printf ("id_%d", g_random_int ());
+ }
+
str = g_string_new ("<div class=\"form-group");
if (!zak_form_element_get_visible (ZAK_FORM_ELEMENT (element)))