I use a nodereference CCK field which is a listbox with multiple values, (so a multiselect) and the better select doesn't work.
With the beta1 version, it works...
| Comment | File | Size | Author |
|---|---|---|---|
| #6 | scrollchecks-6.x-0.1-dev.tar_.gz | 540 bytes | vannus |
I use a nodereference CCK field which is a listbox with multiple values, (so a multiselect) and the better select doesn't work.
With the beta1 version, it works...
| Comment | File | Size | Author |
|---|---|---|---|
| #6 | scrollchecks-6.x-0.1-dev.tar_.gz | 540 bytes | vannus |
Comments
Comment #1
mmilo commentedI can confirm this as well - for beta2, the BetterSelect doesn't override the normal multiselect for node reference fields.
Comment #2
Mark Theunissen commentedThanks, will look into it.
Comment #3
Roulion commentedHi
any news ? it's been a long time since this point is active..
Thanks for your answer
Comment #4
kepford commentedWhat is the status on this feature request? I would love to use this module for node references.
Comment #5
traviscarden commented+subscribing
Comment #6
vannus commenteda quick workaround until better select is fixed/improved.
(better select wasnt working for me at all)
1) disable better select
2) change select lists to checkboxes
3) feel free to change the max-height property in "modules/scrollchecks/scrollchecks.css" to something more suitable for yourself.
Comment #7
tdous commentedSubscribing
Comment #8
buckley commentedSubscribing
Comment #9
vaish commentedConfirming the bug. Until this is fixed, possible workaround is to make nodereference field required. Bug is caused by the code that checks for validity of all the options. It considers "-none-" option as invalid (because of empty key) and fails to replace select list with checkboxes. If you make the field required, "none" option will not be generated and this bug will be avoided.
Comment #10
giorgoskI can confirm its not working for cck nodereference fields
workaround add this in your theme
.form-checkboxes{
height: 200px;
overflow-y: scroll;
}