Activities of "EngincanV"

added
<PackageReference Include="Volo.Abp.AspNetCore.Components.Web.LeptonXTheme" Version="1.0.4" /> to our main Blazor project

now i get _Host.cshtml(5,42): Error CS0234 : The type or namespace name 'LeptonXTheme' does not exist in the namespace 'Volo.Abp.AspNetCore.Components.Web' (are you missing an assembly reference?)

also the nuget manager shows:

there are no v1.0.4 for UI.Theme.LeptonX and Components.Server.LeptonXTheme - not sure if this is correct

Hi, can you try again? (you might run abp clean command and then build your application)

We have released 1.0.4 just before. You can update the LeptonX package version to 1.0.4.

Hi, you are using LeptonX 2.0.0, therefore you don't need to override the layout, you can directly override the footer component. (We fixed the problem described at https://support.abp.io/QA/Questions/4251/Footer-missing-Breadcrumb-problems).

Open the MainFooterComponent.razor file it's under the Components/Layout folders:

Then, you can override the default footer as below:

@using Volo.Abp.DependencyInjection
@using Volo.Abp.AspNetCore.Components.Web.LeptonXTheme.Components.ApplicationLayout.SideMenu
@inherits Footer
@attribute [ExposeServices(typeof(Footer))]
@attribute [Dependency(ReplaceServices = true)]

@* your custom footer content *@
<span class="copyright-text text-center">My Custom Footer</span>

For the above example, the output will be as shown below:

create SideMenuLayout.razor in Components/ApplicationLayout with the content you posted but it is not used

so please, just create a new package version...

I will talk with the team to release v1.0.4 for LeptonX and will inform you when we released it.

@EngincanV this doesnt work... how can i override the file with only the part you provided ? please create a backport or share the full SideMenuLayout.razor file. thanks note: if you dont want to share this in puplic, sent it to my email - but that wont solve the problem for all other people that need to stay on net 6 too

SideMenuLayout.razor

@inherits LayoutComponentBase
@using Volo.Abp.AspNetCore.Components.Web.LeptonXTheme.Components.ApplicationLayout.Common
@using Volo.Abp.Ui.Branding
@using Volo.Abp.BlazoriseUI.Components
@using Volo.Abp.AspNetCore.Components.Web.LeptonXTheme.Components.ApplicationLayout.SideMenu
@using Volo.Abp.AspNetCore.Components.Web.LeptonXTheme.Components.ApplicationLayout.SideMenu.MainHeader
@using Volo.Abp.AspNetCore.Components.Web.LeptonXTheme.Components.ApplicationLayout.SideMenu.Navigation
@using Volo.Abp.AspNetCore.Components.Web.Theming.Components

@inject IBrandingProvider BrandingProvider

<div class="lpx-scroll-container ps">
	<div id="lpx-wrapper">
		<MainHeader />

		<div class="lpx-content-container">
			<div class="lpx-topbar-container">
				<div class="lpx-topbar">
					<Breadcrumbs />
				</div>
			</div>
			<div class="lpx-content-wrapper">
				<div class="lpx-content">
					<ContentToolbar />
					<PageAlert />
					@Body
					<DynamicLayoutComponent />
					<UiMessageAlert />
					<UiNotificationAlert />
				</div>
			</div>
			<footer>
				<Footer />
			</footer>
		</div>

		<MobileNavbar />

		<div class="lpx-toolbar-container">
			<MainHeaderToolbar />
		</div>
	</div>
</div>

Hi, sorry for the late response. If you are not considering upgrading to 7.0, you can override the SideMenuLayout.razor and add a footer section like below:

To override the SideMenuLayout.razor, you just need to create a file in the same directory (Components/ApplicationLayout/SideMenuLayout.razor).

We've fixed the problem, it should be working as expected. If your problem still persists, please don't hesitate to write me back. Or if fixed feel free to close the question.

Best Regards.

Hi, currently we are facing some problems with our NuGet server. We are working on it. I'll inform you when it's fixed.

@EngincanV will there be a v6 release for this fix ?

Hi, you can update your LeptonX package versions to 2.0.0, it was released yesterday and includes the fix for your problem.

thanks, you can ask @maliming for the example project ( its an almost empty project, generated by abp suite 6.0 ) - have sent it to his email

We've reproduced the problem and will fix it within the new release. Thanks again for reporting.

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