- ABP Framework version: v7.2.2
- UI Type:MVC
- Database System: EF Core (SQL Server)
- Tiered (for MVC) or Auth Server Separated (for Angular): no
- Exception message and full stack trace:
- Steps to reproduce the issue:
Hello,
I followed this steps to replace the content title view component -> https://docs.abp.io/en/commercial/latest/themes/lepton-x/mvc#content-title Here is only explained how to replace the view component but I also need to extend the content title model.(I need to do this for a application template and two modules ) How can I do this ?
Because I want to add this info symbol as you show on the lepton x demo page
6 Answer(s)
-
0
-
0
Thank you for the hint. But I need also to add the Mouseover InfoText for every page. Is there no other way to replace/extend the pageheader because the application has a lot of pages ?
-
0
-
0
Okay and is there a way to disable all breadCrumbs of all the pages in a configuration ? I have seen the pageHeaderOptions only availaible for blazor ?
-
0
You can add following code in
global-styles.css
for disable or hide breadCrumbs..lpx-topbar-container { visibility: hidden; }
-
0
Thank you for your help