Regex validation waits until all mandatory field are fulfilled ?
Hi,
I wonder why the regex validation seems to turn active first when all mandatory field are fulfilled? Why aren't regex validation and mandatory check done field by field?
I.e. once the mandatory check is OK, I would like the regex validation to be incorporated for that field directly (without having to wait for all other mandatory field to be OK first).
I also noticed that "Invalid error message" is not working. "Please provide a valid value for FIELDNAME" shows instead of my custom error message.
I am running Umbraco 7.2.1 and Forms 4.0.1.
Anybody had the same experience? Perhaps these issues are addressed in the latest versions?
I think I found the solution. When I added Lightbox the instructions are to add <script src="js/jquery-1.11.0.min.js"></script>. However, it seems that doing this affect <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> which I found to be causing my issue above. So I removed <script src="js/jquery-1.11.0.min.js"></script> and now Umbraco Forms works fine again (and Lightbox works great as well)
Regex validation waits until all mandatory field are fulfilled ?
Hi,
I wonder why the regex validation seems to turn active first when all mandatory field are fulfilled? Why aren't regex validation and mandatory check done field by field? I.e. once the mandatory check is OK, I would like the regex validation to be incorporated for that field directly (without having to wait for all other mandatory field to be OK first).
I also noticed that "Invalid error message" is not working. "Please provide a valid value for FIELDNAME" shows instead of my custom error message.
I am running Umbraco 7.2.1 and Forms 4.0.1.
Anybody had the same experience? Perhaps these issues are addressed in the latest versions?
Regards //Martin
I think I found the solution. When I added Lightbox the instructions are to add
<script src="js/jquery-1.11.0.min.js"></script>
. However, it seems that doing this affect<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
which I found to be causing my issue above. So I removed<script src="js/jquery-1.11.0.min.js"></script>
and now Umbraco Forms works fine again (and Lightbox works great as well)is working on a reply...