Hi, abp add-module Volo.TextTemplateManagement
only in .net core , but don't add in angular project
To install it for Angular UI, please see https://docs.abp.io/en/commercial/latest/modules/text-template-management#angular-ui .
using Volo.Abp.AspNetCore.Components.WebAssembly.LeptonXLiteTheme; using Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme.Themes.LeptonXLite;
dotnet add package Volo.Abp.AspNetCore.Components.WebAssembly.LeptonXLiteTheme --prerelease this is dot net cli code for adding LeptonXLiteTheme in abp framework
i only have these 2 namespces your solution only applies on lepthon x commercial version please give me a solution for lepthon x lite version for abp framework
LeptonX Lite does not have the top menu option. The top menu is only available for the ABP Commercial customers, so if you want to use the top menu, you need to switch to the LeptonX theme.
i have updated to this version but still this code
Configure<LeptonXThemeBlazorOptions>(options => { options.Layout = LeptonXBlazorLayouts.TopMenu; });
does not work and does not show namespces to add
Please, ensure you are configuring the LeptonXThemeBlazorOptions
in the Blazor project and also restore the project.
Namespace should be Volo.Abp.AspNetCore.Components.Web.LeptonXTheme;
After these configurations, you can run the abp bundle
command under the blazor project directory and then top menu should be seen.
when will be new version available?
Hi, v1.0.0-rc.2 has been released for LeptonX. You can update the package version and use the top menu.
Hi, you can run the following command on the root directory of your project to add the Volo.TextTemplateManagement
to your project:
abp add-module Volo.TextTemplateManagement
when will be new version available?
I can't give you an exact date for release, because it's not decided yet. But I've taken note to inform you when it's released.
Best Regards.
Hi, thanks for reporting the problem. I've tried and faced the same issue as you mentioned. I've created an issue for it and you can track the issue from here.
Btw, your credit is refunded and we'll fix the problem asap.
hello, i am trying to change my menu placement from top to left in lepthon x lite theme, but i dont see any options to do that? how is it possbile?
Hi, I guess you meant the top menu layout, right?
We've implemented the top menu layout for Blazor and it'll be available with the new LeptonX release (1.0.0-rc.2 or 1.0.0). You will only need to configure the LeptonXThemeBlazorOptions
as follows:
Configure<LeptonXThemeBlazorOptions>(options =>
{
options.Layout = LeptonXBlazorLayouts.TopMenu;
});
- Can I override/fix this styling? Unfortunately can´t use it like this...
Yes, you can. You just need to add the vs.css file in the exact same directory of the Docs module. (https://github.com/abpframework/abp/blob/dev/modules/docs/src/Volo.Docs.Web/Pages/Documents/Shared/Styles/vs.css)
- I guess I need to setup a elastic service in my Azure portal and point to it, right? Or can it be used "locally" without having to buy an extra service? I can´t find more information on this in any abp.io documents. I just have never used it before...
You don't need to use elastic search, is not required (it's optional and goods for full search). In other words, the Docs module is not dependent on it to run.
I close the question since your problem seems to be resolved.
Best regards.
So maybe it was the "index" vs "Index" thing?
Yes, i think it was related with that. Because, it checks the default page and then pull the documentations.
One thing for you, there is something wrong with the styling of the header up in the left corner.
Yes, it seems there are styling problems when using the Docs module with Lepton theme. (It works great with Basic Theme) I'll create a new issue for that. Thanks.