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...

CommentFileSizeAuthor
#6 scrollchecks-6.x-0.1-dev.tar_.gz540 bytesvannus

Comments

mmilo’s picture

I can confirm this as well - for beta2, the BetterSelect doesn't override the normal multiselect for node reference fields.

Mark Theunissen’s picture

Assigned: Unassigned » Mark Theunissen

Thanks, will look into it.

Roulion’s picture

Hi

any news ? it's been a long time since this point is active..
Thanks for your answer

kepford’s picture

What is the status on this feature request? I would love to use this module for node references.

traviscarden’s picture

+subscribing

vannus’s picture

Status: Active » Needs work
StatusFileSize
new540 bytes

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.

tdous’s picture

Subscribing

buckley’s picture

Subscribing

vaish’s picture

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.

giorgosk’s picture

I can confirm its not working for cck nodereference fields

workaround add this in your theme

.form-checkboxes{
height: 200px;
overflow-y: scroll;
}