-
-
Notifications
You must be signed in to change notification settings - Fork 191
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
upgrade to 4.3.5 breaks use of OrderedSelectWidget #530
Comments
I can confirm this also affects for example ftw.globalstatusmessage, another third-party package apparently using OrderedSelectWidget. |
Try downgrading to z3c.form 3.2.1. The only difference, it seems, from 3.2.1 to 3.2.3 is that some inline javascript was moved into a file. Can you see if the orderedselect_input.js is getting included in your rendered page? Can you check if there are javascript errors related to it? |
orderedselect_input.js is included, yes - no JS errors on Safari on OS X |
Downgrading to z3c.form 3.2.1 helps - no problem there. |
@pbauer any idea what might be going on? You did the change. |
@pbauer ping on this |
I have a z3c.form with a field defined thus:
As per docs, the default widget for this is the
z3c.form.browser.orderedselect.OrderedSelectWidget
. This was working fine before upgrade. After upgrading, the widget only shows up & down arrows, but nothing else - nothing to select from, either.I tried switching back to 4.3.4 and also (on 4.3.5) instead of
schema.List
switching toschema.Set
to change the default widget to regular multi select, and both such "downgraded" cases work fine.The text was updated successfully, but these errors were encountered: