Adding some sub categories under a category on the web

I need to make some modifications to a web application. What they want is to add a means of drilling down on the left side menu… the user can create some categories like …New Release, Maps… the application is dynamic, the user would also create the sub categories…Here is what the web site looks like on the left menu…

Home


News Release

Warnings

Reports


Resources

So under News Release the user could drill down something like…

News Release

Infrasturctures

Communities

Warnings

how could I make this work?

Paul

Subject: adding some sub categories under a category on the web

If you configure the field that is used for the column to be in the format of:

Item\SubItem\SubSubItem

You get new ‘subcategories’ automatically. It’s the \ that does the magic.

HTH

Doug

Subject: RE: adding some sub categories under a category on the web

Ok I tried using the 2 fields in the view column.My first field is CategoryInfo

My second field is CategorySubInfo

in the form the CategoryInfo = Maps and the CategorySubInfo = Country

in the view column I have CategoryInfo +\ + CategorySubInfo

so in the view’s first column it shows MapsCountry

I guess I am not getting it right…