Create Multi-Tiered Lists
Multi-tiered lists are created and defined in the Lists Manager. After you create the lists, they can be added to a board using the Advanced Board Editor.
The following example shows the code used to implement multi-tiered lists in your boards. In the example below, from_list is the name of your list and from_sublist is the name of your sublist. The from_sub_sublist is the name of your sub-sub-list. Replace these items with the names of the lists you have created.
Copy Code
<select name="from_list" list="Multi-Tiered List" />
<select name="from_sublist" list="Multi-Tiered List" parent="from_list" />
<select name="from_sub_sublist" list="Multi-Tiered List" parent="from_sublist" />
Not ready to build a multi-tiered list? Learn how to create a basic list, and see also the section regarding the <filterlistdropdown> tag.
Related Concepts
Related Tasks