Closed (fixed)
Project:
Multi-column checkboxes radios
Version:
6.x-1.4
Component:
Code
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
10 Sep 2009 at 07:09 UTC
Updated:
2 Dec 2009 at 17:28 UTC
Looks node reference field has new widget available. Now we can use checkbox / radio buttons widgets for choose node reference value. Since Multi-column checkboxes radios already did a good formatting work for the widget. I thought it also can serve to node reference.
Here's one line change only. At 13rd line of module.
from
if ($widget['type'] == 'optionwidgets_buttons' || $widget['widget_type'] == 'optionwidgets_buttons') {
to
if ($widget['type'] == 'optionwidgets_buttons' || $widget['widget_type'] == 'optionwidgets_buttons' || $widget['widget_type'] == 'nodereference_buttons' || $widget['type'] == 'nodereference_buttons') {
thanks the module~
Comments
Comment #1
mattyoung commentedadded and committed in HEAD.
I've made changes so now additional CCK widget types support can be added without code change. See README.txt.
Please try the dev release.
Comment #2
mattyoung commented~