Activities of "EngincanV"

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.

  1. I've created a new project as below:

  • Your index page is index.md instead of Index.md, so please change it in the form. (I mean default document name should be index for you.)

This naming might be the problem to prevent you to view your docs.

  1. Then click the pull action for the project as in the below ss (you don't need to add records manually):

  1. This should pull the index page for the English and for other pages. You can check from documents page from your admin panel.

  1. Then you should be able to view the 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).

Showing 421 to 430 of 730 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 11, 2024, 11:11