Short Guide: How to add Setting Pages for modules #6665
Unanswered
cotur
asked this question in
Show and tell
Replies: 1 comment
-
Thanks - this is a great start. I'm looking forward to hopefully seeing something like (link below) this in the start-up templates in the future: |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
While developing reusable modules with ABP Framework, we might need create settings page to change module's behavior in different cases.
ABP Framework has predefined Setting Management module and you can create your setting pages and bring it to setting management module for rendering.
Let me give you step-by-step guide to show "How to add setting page for your module".
Behind the logic
This guide is prepared for Blazur UI, but it is generally same for other UI types
To create a setting page.
MyModuleSettingManagementComponent.razor
in your module.This contains a setting form for your module.
MyModuleSettingManagementComponentContributor
in your module.SettingManagementComponentOptions
in your module class.Now you can see your setting page in
Settings
item at theAdministration Menu
. 🙂Beta Was this translation helpful? Give feedback.
All reactions