# Summary

Simple hierarchical select defines a new form widget for taxonomy fields to select a term by "browsing" through the vocabularies hierarchy.

https://www.drupal.org/project/shs/releases/8.x-1.0-alpha4

# Project URL

https://www.drupal.org/project/shs

# Where is the code?

The code will be managed by the Drupal git infrastrucure: http://cgit.drupalcode.org/shs?h=8.x-1.x

# Estimated completion date

Unknown

# Dependencies

  • Taxonomy module is required to use Simple hierarchical select.
  • For better performance you may consider installing the High-performance JavaScript callback handler. It speeds up the load time of each request (for example after selecting a new value) incredibly.

# Who's doing the port?

stBorchert

# What help do they need?

Unknown

# D8 roadmap

Unknown

# Background and reference information

Unknown

Comments

legaudinier created an issue. See original summary.

stBorchert’s picture

Issue summary: View changes
stBorchert’s picture

Status: Active » Fixed

The first alpha-release of Simple hierarchical select has been published: https://www.drupal.org/node/2662718.

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.

webchick’s picture

Status: Closed (fixed) » Needs review

For the purposes of this queue, "fixed" == has a stable release. Bumping down to "needs review" (alpha/beta).

gmangones’s picture

How to implement a form with a select o shs? like this:
$form['marketplace'] = array(
'#title' => t('What\'s your category?'),
'#type' => 'hierarchical_select',
'#config' => array(
'module' => 'hs_taxonomy',
'params' => array(
'vid' => (int) $term_data_biblio->vid,
'exclude_tid' => NULL,
'root_term' => NULL,
'entity_count_for_node_type' => NULL,
),
),
'#default_value' => $conf['marketplace'],
);

Thanks,

mmjvb’s picture

@gmangones This issue is about the port to D8. For support request see the issue queue of ohs itself.

mmjvb’s picture

Issue summary: View changes