Skip to content
Snippets Groups Projects
Commit 3a286e82 authored by Carsten  Rose's avatar Carsten Rose
Browse files

Merge branch 'b6232-TextareaRequired' into 'master'

fixed: Missing Required for Textareas and Editor (and Select and so on)

See merge request !190
parents 07b73555 7a871fbf
No related branches found
No related tags found
1 merge request!190fixed: Missing Required for Textareas and Editor (and Select and so on)
Pipeline #2632 passed
......@@ -230,7 +230,7 @@ var QfqNS = QfqNS || {};
n.Form.prototype.getFirstNonValidElement = function () {
var index;
var form = document.getElementById(this.formId);
var inputs = form.getElementsByTagName("input");
var inputs = form.elements;
var elementNumber = inputs.length;
for (index = 0; index < elementNumber; index++) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment