Populate Dropdown with values from categories (taxonomy)

Posted by Community Admin on 05-Aug-2018 10:54

Populate Dropdown with values from categories (taxonomy)

All Replies

Posted by Community Admin on 23-Dec-2011 00:00

Hi,

I'm a newbie. i got a three level drop down and i want to populate it with the values. currently the images/videos are categorized from type of "businesstype" as parent ,"country" as child of businesstype, then "state" the last child.

please see my sample code:

TaxonomyManager manager = TaxonomyManager.GetManager();
var taxonomy = manager.GetTaxonomies<HierarchicalTaxonomy>().Where(t => t.Name == "Categories").SingleOrDefault();
var details = taxonomy.Taxa.ToList();
foreach (HierarchicalTaxon taxon in details)

var li = new ListItem(taxon.Title, taxon.Title);
ddlList.Items.Add(li);


i can get the whole list but i have no way to segregate them by parent to child. i hope youcould give a snipper on how to do it. thanks.

Posted by Community Admin on 26-Dec-2011 00:00

Hello,

HierarchicalTaxon has a property parent that you can use.

All the best,
Ivan Dimitrov
the Telerik team

Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>

This thread is closed