How can I add my customize page in the menu? #10618
Replies: 3 comments 1 reply
-
Hi, bro. Have you solved this problem. I meet it, too. |
Beta Was this translation helpful? Give feedback.
-
I have find the way to solve this problem. After we added this view into |
Beta Was this translation helpful? Give feedback.
-
I think it may be possible to use the hook here https://github.com/apache/superset/blob/master/superset/config.py#L1177-L1181, and access Though I think of the calls matters, so you would only be able to append to existing menus or create new categories. Could be good for someone to test this and document it. |
Beta Was this translation helpful? Give feedback.
-
Is your feature request related to a problem? Please describe.
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
Describe the solution you'd like
I have try to add a view in the menu behind Dashboard,but superset can not add my view with permission.
Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.
Additional context
appbuilder.add_view(
MyView,
"MyView",
label=__("MyView"),
icon="fa-dashboard",
category="MyView",
category_icon="",
)
Beta Was this translation helpful? Give feedback.
All reactions