Check the docs before asking a question: https://abp.io/docs/latest Check the samples to see the basic tasks: https://abp.io/docs/latest/samples The exact solution to your question may have been answered before, and please first use the search on the homepage.
Provide us with the following info:
🧐 Hint: If you are using the ABP Studio, you can see all the information about your solution from the configuration window, which opens when you right-click on the solution and click on the Solution Configuration
button.
- Exception message and full stack trace:
- Steps to reproduce the issue:
I want add a tab on the viewdetails for users, can you please help me with steps to get the desired results?
1 Answer(s)
-
0
Hello, the current setup, the user View Details modal isn't directly customizable. However, you can extend the functionality by using Entity Action Extensions to add a custom tab or action that opens a separate component with the additional details you want to display.
Here's how you can approach it:
- Create a new Angular component that will serve as your custom tab or detail view.
- Use the Entity Action Extension API to register a new action (e.g., “View More Details”) for the User entity.
- In the action handler, open your custom component either in a modal or a separate route, depending on your UI preference.
You can refer to the official documentation for step-by-step guidance:
👉 Entity Action Extensions – Angular UI | ABP Docs
Let me know if you need further assistance.