tags:

views:

384

answers:

2

Node reference fields in Drupal are displayed as lists by default. Is there a way to change that?

I'd like to output them as JSON so I can create a fancy JavaScript visualization.

+1  A: 

You can modify it in 2 ways: via custom module with function hook_form_alter or via theming (preprocessing form or templating form).
http://api.drupal.org/api/function/hook_form_alter/6
http://www.lullabot.com/articles/modifying-forms-drupal-5-and-6

For AHAH: http://api.drupal.org/api/drupal/developer--topics--forms_api_reference.html/6#ahah
Also, nodereference already have little ahah: "autocomplete" in field editing of custom node type.

Nikit
+1  A: 

http://drupal.org/project/contemplate

Dan Albey

related questions