marmelab / ng-admin

Add an AngularJS admin GUI to any RESTful API
http://ng-admin-book.marmelab.com/
MIT License
3.95k stars 728 forks source link

How to generate a three-level menu? #1359

Closed Holyangelmom closed 7 years ago

Holyangelmom commented 7 years ago

i want to generate three-level menu, the following code does not work:

`

admin.menu(nga.menu().addChild(
                   nga.menu(A).addChild(

            nga.menu(B)).addChild(

                nga.menu(C)))
    );  

`

How can i do that?

Kmaschta commented 7 years ago

Short answer: you can't.

ng-admin doesn't have this feature, unless with code it yourself with a custom theme.

Holyangelmom commented 7 years ago

thx l'll go to see custom theme.