Description ----------- This module defines the "hierarchical_select" form element, which is a greatly enhanced way for letting the user select items in a hierarchy. Hierarchical Select has the ability to save the entire lineage of a selection or only the "deepest" selection. You can configure it to force the user to make a selection as deep as possible in the tree, or allow the user to select an item anywhere in the tree. Levels can be labeled, you can configure limit the number of items that can be selected, configure a title for the dropbox, choose a site-wide animation delay, and so on. You can even create new items and levels through Hierarchical Select! Integrates with --------------- * Taxonomy (Drupal core) Installation ------------ 1) Place this module directory in your "modules" folder (this will usually be "sites/all/modules/"). Don't install your module in Drupal core's "modules" folder, since that will cause problems and is bad practice in general. If "sites/all/modules" doesn't exist yet, just create it. 2) Enable the Hierarchical Select and Hierarchical Select Taxonomy modules. 3) If you want to use it for one or more of your vocabularies, go to admin/structure/types and click the "manage fields" link for a content type on which you're using a Term reference field. Click the "edit" link for this Term reference field and then go to the "widget type" tab in the upper right corner. There, you can choose the "Hierarchical Select" widget type, and when you do, the entire Hierarchical Select configuration UI will appear: here you'll find a whole range of Hierarchical Select settings. All settings are explained there as well! Troubleshooting --------------- If you ever have problems, make sure to go through these steps: 1) Go to admin/reports/status (i.e. the Status Report). Ensure that the status of the Hierarchical Select module is ok. 2) Ensure that the page isn't being served from your browser's cache. Use CTRL+R in Windows/Linux browsers, CMD+R in Mac OS X browsers to enforce the browser to reload everything, preventing it from using its cache. 3) When you're getting a JS alert with the following message: "Received an invalid response from the server.", ensure that the page (of which this form is a part) is *not* being cached. 4) When Hierarchical Select seems to be misbehaving in a certain use case in which terms with multiple parents are being used, make sure to enable the "Save term lineage" setting. Note: you may have to repeat this for every configuration in which the vocabulary with terms that have multiple parents are being used. E.g. if such a vocabulary is called "A", then go to admin/config/content/hierarchical_select/configs and edit all configuration that have "A" in the "Hierarchy" column. In case of problems, don't forget to try a hard refresh in your browser! Limitations ----------- - Creating new items in the hierarchy in a multiple parents hierarchy (more scientifically: a directed acyclic graph) is *not* supported. - Not the entire scalability problem can be solved by installing this set of modules; read the maximum scalability section for details. - The child indicators only work in Firefox. This *cannot* be supported in Safari or IE. See http://drupal.org/node/180691#comment-1044691. - The special [save-lineage-termpath] token only works with content_taxonomy fields as long as you have the "Save option" set to either "Tag" or "Both". - In hierarchies where items can have multiple parent items and where you have enabled Hierarchical Select's "save lineage" setting, it is impossible to remember individual hierarchies, unless the underlying module supports it. So far, no module supports this. Hierarchical Select is just a form element, not a system for storing hierarchies. For example, if you have created a multiple parent vocabulary through the Taxonomy module, and you have terms like this: A -> C A -> D B -> C B -> D If you then save any two lineages in which all four terms exist, all four lineages will be rendered by Hierarchical Select, because only the four terms are stored and thus there is no way to recover the originally selected two lineages. - You can NOT expect the Hierarchical Select Taxonomy module to automagically fix all existing nodes when you enable or disable the "save lineage" setting and neither can you expect it to keep working properly when you reorganize the term hierarchy. There's nothing I can do about this. Hierarchical Select is merely a form element, it can't be held responsible for features that Drupal core lacks or supports poorly. See the following issues: * http://drupal.org/node/1023762#comment-4054386 * http://drupal.org/node/976394#comment-4054456 Rendering hierarchy lineages when viewing content ------------------------------------------------- Hierarchical Select is obviously only used for input. Hence it is only used on the create/edit forms of content. Combine that with the fact that Hierarchical Select is the only module capable of restoring the lineage of saved items (e.g. Taxonomy terms). None of the Drupal core modules is capable of storing the lineage, but Hierarchical Select can reconstruct it relatively efficiently. However, this lineage is only visible when creating/editing content, not when viewing it. To allow you to display the lineages of stored items, I have provided a theming function that you can call from within e.g. your node.tpl.php file: the theme_hierarchical_select_selection_as_lineages($selection, $config) function. Sample usage (using Taxonomy and Hierarchical Select Taxonomy):
taxonomy, $config); ?>
This will automatically render all lineages for vocabulary 2 (meaning that if you want to render the lineages of multiple vocabularies, you'll have to clone this piece of code once for every vocabulary). It will also automatically get the current Hierarchical Select configuration for that vocabulary. Alternatively, you could provide the $config array yourself. Only three keys are required: 1) module, 2) params, 3) save_lineage. For example:
taxonomy, $config); ?>
If you don't like how the lineage is displayed, simply override the theme_hierarchical_select_selection_as_lineages() function from within your theme, create e.g. garland_hierarchical_select_selection_as_lineages(). It's also worth mentioning that the 'hs_taxonomy_tree' tag was added to the queries that build the term tree. As a result now you can easily change/filter the elements that are selected by the module (see hs_taxonomy.module for more info). Setting a fixed size -------------------- When you don't want users to be able to resize a hierarchical select themselves, you can set a fixed size in advance yourself Setting #size to >1 does *not* generate #multiple = TRUE selects! And the opposite is also true. #multiple sets the "multiple" HTML attribute. This enables the user to select multiple options of a select. #size just controls the "size" HTML attribute. This increases the vertical size of selects, thereby showing more options. See http://www.w3.org/TR/html401/interact/forms.html#adef-size-SELECT. Sponsors -------- * Initial development: Paul Ektov of http://autobin.ru. * Abstraction, to let other modules than taxonomy hook in: Etienne Leers of http://creditcalc.biz. * Support for saving the term lineage: Paul Ektov of http://autobin.ru. * Multiple select support: Marmaladesoul, http://marmaladesoul.com. * Taxonomy Subscriptions support: Mr Bidster Inc. * Ability to create new items/levels: The Worx Company, http://www.worxco.com. * Ability to only show items that are associated with at least one entity: Merge, http://merge.nl. * Views 2 support: Merge, http://merge.nl. * Initial Drupal 7 port + folow-up fixes: PingV, http://pingv.com. * Port of "save lineage" functionality to Drupal 7: Bancard Data Service Author ------ Wim Leers * website: http://wimleers.com/ * contact: http://wimleers.com/contact The author can be contacted for paid development on this module. This can vary from new features to Hierarchical Select itself, to new implementations (i.e. support for new kinds of hierarchies).