Posted by Roulion on March 9, 2009 at 10:06pm
| Project: | Better Select |
| Version: | 6.x-1.0-beta2 |
| Component: | User interface |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Mark Theunissen |
| Status: | needs work |
Issue Summary
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...
Comments
#1
I can confirm this as well - for beta2, the BetterSelect doesn't override the normal multiselect for node reference fields.
#2
Thanks, will look into it.
#3
Hi
any news ? it's been a long time since this point is active..
Thanks for your answer
#4
What is the status on this feature request? I would love to use this module for node references.
#5
+subscribing
#6
a 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.
#7
Subscribing
#8
Subscribing
#9
Confirming 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.
#10
I can confirm its not working for cck nodereference fields
workaround add this in your theme
.form-checkboxes{
height: 200px;
overflow-y: scroll;
}