Categories > TinyButStrong general >

display data with a tree or hierarchical structure

The forum is closed. Please use Stack Overflow for submitting new questions. Use tags: tinybutstrong , opentbs
By: andy
Date: 2007-10-19
Time: 22:15

display data with a tree or hierarchical structure

I found an example from http://www.tinybutstrong.com/forum.php?msg_id=7900 on display data with a tree or hierarchical structure. This example was demostrated on table. How would you do this to <ul><li></li><ul> ? Thanks
By: andy
Date: 2007-10-19
Time: 22:30

I did it!!!

Well, here's how, I just convert it from table to <ul> format:


<ul>
    <li>
        ID: [m.m_id;block=li]- Name: [m.m_title]
        <ul>
            <li>[sparent;block=ul]ID: [s.m_id;block=li;bmagnet=ul;p1=[m.m_id];ondata=f_ondata_tree]-[s.m_title][s.subitems;protect=no;htmlconv=no]
            </li>
        </ul>
    </li>
</ul>
By: andy
Date: 2007-10-19
Time: 22:31

Re: I did it!!!

By: Skrol29
Date: 2007-10-19
Time: 23:20

Re: display data with a tree or hierarchical structure

Ok, I've given an example on the thread.