Is there any way to make the categories list into hierarchical data source or list

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
13 年 前
Is there an easy way to make the categories into hierarchical data using the id and parent id relationship.
Would like to use jstree for the categories view in the admin area.
13 年 前
I'm pretty silly I don't have too, jstree did it for me.
Just created a string with the follow basic structure.

<root>
<item parent_id="category parent Id" id="category Id">
<content>
  <name href="http://localhost:11139/administration/CategoryDetails.aspx?CategoryID=category Id">
      category name
  </name>
</content>
</root>

dump it into jscript for jstree boom nice jstree for categories in the admin area..

Works ALOT better when your dealing with 600 plus categories.

Just have to add some css touches and add a image per published or not.. done!
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.