Skip to content
This repository has been archived by the owner on Dec 12, 2021. It is now read-only.

multiple choices not supported? #142

Closed
olegsv opened this issue Jun 27, 2016 · 4 comments
Closed

multiple choices not supported? #142

olegsv opened this issue Jun 27, 2016 · 4 comments
Milestone

Comments

@olegsv
Copy link

olegsv commented Jun 27, 2016

Hello,

As far as we can see in 0.10 there is no support for SELECT with multiple="multiple" attribute. The library shows an error on the console.

We have a fix to get rid of the error, but it's far from complete solution:
...

@@ -554,9 +556,15 @@
       inputs = form.querySelectorAll("select[name]");
       for (i = 0; i < inputs.length; ++i) {
         input = inputs.item(i);
-        value = v.sanitizeFormValue(input.options[input.selectedIndex].value, options);
-        values[input.name] = value;
+        for( j=0; j<input.options.length; j++ ) {
+            select_option = input.options[j];
+            if( select_option.selected ) {
+                value = v.sanitizeFormValue( select_option.value, options);
+                values[input.name] = value ;
       }
+        }
+      }

@ansman
Copy link
Owner

ansman commented Jun 28, 2016

Is this regarding validate.collectFormValues()?

@olegsv
Copy link
Author

olegsv commented Jun 28, 2016

Yes this is.

@ansman ansman added this to the Next milestone Jul 3, 2016
@ansman ansman closed this as completed in 7c142c6 Jul 3, 2016
@ansman
Copy link
Owner

ansman commented Nov 5, 2016

Released in 0.11.0

@prionkor
Copy link

so, is there a way of validating multiselect? more precisely writing constraint for array values?

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

3 participants