Activities of "enisn"

Unfortunately there is no way to handle that kinds of multiple-page routes while activating selected menu in the current version. (5.3)

So your credit is refunded.


But, we've developed a feature to solve that kind of issues in v6.0. (https://github.com/abpframework/abp/pull/12840)

You can track the releases from here , 6.0-rc.1 will be released on July 19.

After upgrading to v6.0, you can set the menu name like that:

@inject PageLayout PageLayout

@code {
    protected override async Task OnInitializedAsync()
    {
        PageLayout.MenuItemName = "MyProjectName.Products";
    }
}

And it'll automatically update the selected menu without refreshing the page.

Hi @adrianl

I have a couple of questions to determine the issue.

  • What is your page route?

  • Also, is that menu highlighted when you refresh the page?

Hi @Sturla

We're aware of the problem and almost solved it. It'll be released in a patch version.

Thanks for your patience.

Also your credit is refunded.

Hi @Tony_Albutt-

We are aware of the issue and hardly working on it. We'll release a patch version as soon as possible.

Thanks for your patience.

If I switch in the navigation e.g. from /identityserver/clients to Cms/Pages
the page flickers some milliseconds from Full Width to Boxed Layout If i look at the html output identityserver is render as BlazorServer Page with Cms/Pages it render as mvc static html page

CMS Kit Blazor support has been added in v5.3. If you migrated from an older version, blazor packages haven't been installed to your project. Can you try installing Volo.CmsKit.Pro.Admin.Blazor.Server packages for your blazor application and configure it in module file [DependsOn(typeof(CmsKitProAdminBlazorServerModule))]. That should solve the flicker problem because it removes blazor to mvc switch for cmskit pages.

Also there is a little Issue on BlazorServer the Login Button on Homepage is missing the L["Login"] Text. Sorry, I couldn't recognize which button did you mention here. Is that button on project templates or it's in cmskit components?

Hi, We're checking it. Until we find and solve problem, can you disable it with following writing type:

GlobalFeatureManager.Instance.Modules.CmsKitPro(cmsKitPro =>
{
    cmsKitPro.EnableAll();

    cmsKitPro.Disable<PollsFeature>();
});

That's a strange problem, there should be a missing dependency but I couldn't reproduce it.

Can you provide the steps so that I can reproduce the problem?

As I can see it's a tiered solution with public website. You can share step by steps from a new application.

Hi @joerguth

ABP & ABP Commercial modules are independent of themes. So, your Layout names might be conflicted, can you try to remove the Lepton theme completely while using LeptonX.

As you can see, all the module pages including CMS Kit, work with LeptonX properly:

Yes its good, thanks, i don't see this line.

I little bug =>

Thanks for your feedback, We're working on this problem

You might be looking for Blazor Server documentation?

It already exists in documentation.

Can you check and inform us? https://docs.abp.io/en/abp/latest/Themes/LeptonXLite/blazor?UI=Blazor

Showing 241 to 250 of 489 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 20, 2024, 08:30