You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove last when is only one breaks.
If there is only one form and minFormsCount is set to 1
you can delete it anyhow. The problem is the count of de forms is 29 show 29 > 1 it let delete de form.
The text was updated successfully, but these errors were encountered:
In the funcion count check if x is numeric: if (jQuery.isNumeric(x) && forms[x] ) {
function count()
{
if (forms.length > 0) {
var count = 0;
var x = [];
for (x in forms) {
console.log("La X es: "+x);
if (jQuery.isNumeric(x) && forms[x] ) {
count++;
}
}
console.log("Count: "+count);
return count;
} else {
return 0;
}
}
Hi,
Remove last when is only one breaks.
If there is only one form and minFormsCount is set to 1
you can delete it anyhow. The problem is the count of de forms is 29 show 29 > 1 it let delete de form.
The text was updated successfully, but these errors were encountered: