I'm using Hierarchical Select to organize tons of terms into a organized 2 part drop down menu. But when i use MSNF I'm getting a popup error saying values could not be retrieved.

Select State (drop down menu with states)

when a sate is selected

Select a City (drop down menu with deeper terms)

I'm not 100% sure, but I think that because multi part node form breaks up the regular form into multiple pages the javascript files needed to retrive the values aren't being loaded.

Comments

mossill’s picture

I found this on the other muti-step module:

http://drupal.org/node/566682

stborchert’s picture

Hm. I've tested with Hierarchical Select and the latest dev of msnf right now and it works without any problems.
Some screenshots of my configuration: https://skitch.com/stborchert/sets/jnq/issue-1571412

Did you made some special configuration in your installation?

stborchert’s picture

Status: Active » Postponed (maintainer needs more info)
stborchert’s picture

Status: Postponed (maintainer needs more info) » Closed (cannot reproduce)
ronaldofs’s picture

I've got multistep node form working with hierarchical_select and conditional_fields just by adding specific jquery_ui js files (in my case on a custom hook_init):

drupal_add_js(drupal_get_path('module', 'jquery_ui') . '/jquery.ui/ui/packed/effects.core.packed.js', 'module', 'header', FALSE, FALSE, FALSE);
drupal_add_js(drupal_get_path('module', 'jquery_ui') . '/jquery.ui/ui/packed/effects.drop.packed.js', 'module', 'header', FALSE, FALSE, FALSE);

In my case it worked. Previously, I could only get it working on the first step...

Hope it helps