Activities of "tony.gayter"

I already had this in the global scripts, not sure why that wasn't working, added your bit in and it started working. Is there and documentation for this anywhere? Im not a js dev I only really do C# so I wouldn't know where to look for any of this?

Im using Blazor Server with blazorize. It all updated to the latest version except for blazorize which it on v1.8.1

LeptonXBlazorLayouts.Boxed doesnt exist!

Question

Im finding the documentation to be really lacking in a lot of areas which is a shame. Something as simple as showing/hiding things seems to either be missing or impossible to find.

I want to use the boxed layout, and the light style. Ive managed to force the light style like this, but I cant see any options to force boxed layout. I dont need it to be selectable in the app. not do i need any of the options drop down menus or the breadcrumb area but I seem to be forced to use them or have to figure out how to override templates. Surely there should just be an option to hide the bread crumb, or fix the layout?

private void ConfigureTheme()
 {
     Configure<LeptonXThemeOptions>(options =>
     {
         options.DefaultStyle = LeptonXStyleNames.Light;
         options.Styles.Remove(LeptonXStyleNames.Dark);
         options.Styles.Remove(LeptonXStyleNames.System);
         options.Styles.Remove(LeptonXStyleNames.Dim);
     });

     Configure<LeptonXThemeMvcOptions>(options =>
     {
         options.ApplicationLayout = LeptonXMvcLayouts.TopMenu;
     });

     Configure<LeptonXThemeBlazorOptions>(options =>
     {
         options.Layout = LeptonXBlazorLayouts.TopMenu;      

     });
 }

Ah ha!

I updated everything except blazorise and it was all good. But when I updated the 2 blazorise packages the message shows up

Blazorise.Bootstrap5 1.8.1 --> 1.8.2 Blazorize.Icons.FontAwesome 1.8.1 --> 1.8.2

Ill downgrade it for now, but its an odd thing to happen?

When I create a fresh solution there is no message about it being a free version (without adding the license key?)

Also I've been building my current solution for a couple of months and it only started to show the message a week ago?

Which out of the two above ways is the way that 'should' work

Recently been getting the message along the bottom of my application saying I was using the free version, so went through the docs and found how to get the key from them. However there is no guidance on how to actually register it, I've tried the following 2 ways to register in my Blazor Server project but after cleaning and rebuilding I'm still getting the message saying I'm using the free version?

private void ConfigureBlazorise(ServiceConfigurationContext context)
{

    // tried adding this way
    context.Services
        .AddBlazorise(options =>
        {
            options.Immediate = true;
            options.ProductToken = "<token here>";
        })
        .AddBootstrap5Providers()
        .AddFontAwesomeIcons();

    // Also tried this
    Configure<BlazoriseOptions>(options =>
    {
        options.ProductToken = "<token here>";
        options.Immediate = true;
    });
}

Thanks for pointing me in the right direction. I hadn't installed the module manually, I had used the cli as in the instructions

abp add-package Volo.Abp.BackgroundJobs.HangFire

But weirdly when I examined the installed packages it was in there and it has added it to the module class. After removing it from the packages and class it now runs. Thank-you

Just in response to the AI message, Ive not touched the DBMigrator project, its as it was when I initialized the project

Showing 1 to 10 of 13 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.1.0-preview. Updated on November 17, 2025, 08:31
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.