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.
To solve the ** ("HTTP Error 500.30 - ASP.NET Core app failed to start")** error, please add the following section to your appsettings.json file:
"ElasticSearch": {
"Url": "http://localhost:9200"
},
I've cloned your repository (https://github.com/sturlath/Acme.MyProject) and try the docs module.
This naming might be the problem to prevent you to view your docs.
I hope it works for you.
Have you really tried doing this with my code (Github+insert records)?
Shouldn´t it show some documents on the document page if there are records in the database?
I don´t know what to do here... file new project + module installing + connecting to Github and getting data == not working
Yes, I've tried it and you can see the screenshots from this answer.
But I'll try it again and try to understand what is the problem you're facing with.
Again here is the data I got in the docs tables. Don´t you get 404?
No, I didn't get a 404 error after these steps.
Did you configure the DocsUiOptions
as below?
Configure<DocsUiOptions>(options =>
{
options.RoutePrefix = null;
});
If you didn't then you need to add the /documents route as a prefix to your URL. (/documents/en/abp/latest).