Activities of "jfistelmann"

hey,

there are different things that need to be done depending on what exactly you want to customize. From your question I am guessing that you just want to replace css.

Here's the documentation on how to do that: LeptonX Blazor WASM Customization

LeptonX MVC Customization

Volosoft Youtube Video about LeptonX Customization

Does that solve your issue?

May it be that abp install-libs was not executed in the deployment process?

Hi,

first thing to notice: dooes the module really depend on something which involves the commercial license? if not -> resolve that.

if it does depend on commercial license:

the commercial license part is inside the appsettings.secrets.json. just open the solution in vs code (for example) and search for "AbpLicenseCode"

This is the thing you need to have set individually for each of your customers. In the example above, we have that several times. You may want to work with things like a common.props or Directory.Build.props file to reduce the amount of files needed to change and you may also want to exclude that file from change tracking.

Hey, the logic for that comes from the leptonx package which source you can download via abp suite.

I would assume that the packages are not up to date. Ensure that your package.json looks something like this:

{
  "version": "1.0.0",
  "name": "my-app",
  "private": true,
  "dependencies": {
    "@volo/abp.aspnetcore.mvc.ui.theme.leptonx": "~2.3.2",
    "@volo/aspnetcore.components.server.leptonxtheme": "~2.3.2",
    "@volo/cms-kit-pro.admin": "~7.3.2",
    "@volo/account": "~7.3.2",
    "@volo/language-management": "~7.3.2"
  }
}

If you changed something, run abp install-libs. after that, everything should be normal again.

Let me know I guessed correctly and if the solution helped :)

Kind regards Jack

Answer

Hey,

what is it exactly what you're trying to do here?

You wrote that you're using Blazor Server, but the code is MVC. Are you building a Widget?

If so, can you share the complete code that is related to that Widget along with the code on how it is invoked?

The first thing that seems strange to me (in case we're talking about a widget here) is the @page directive - which a Widget does not need.

Also: What exactly is null (Exception details)?

Happy to hear that you solved it :)

in order to change the UI you need to change this here, coming from the Volo.Abp.Identity.Pro Module:

You can not use ViewComponents in Blazor.

You would need to either implement a Blazor component for that or provide a cshtml file (like it's done here)

Sure, I'll close and refund.

here are samples: https://github.com/abpframework/abp-samples/tree/master/DomainTenantResolver

Data not coming was expected. I was hoping for an exception though. So, if I interpret this correctly:

Your blob name is correct, else it could not get it. But for some reason the stream is not returning any useful data. Must have something gone wrong with the upload I think. If this is a one-time-issue, is re-uploading a possible solution for you?

If so, maybe add some validation code that after an upload you try to get the stream -> if it's null like in this specific case, throw an exception to communicate that something has gone wrong

Showing 31 to 40 of 152 entries
Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11