Activities of "alper"

@edirkzwager it seems like you are doing everything OK. but this code smells

context.Files.RemoveAll(x => x.StartsWith("/libs/jquery/jquery.js", StringComparison.InvariantCultureIgnoreCase));

if you run it in a Docker container (Linux OS) and in Windows it'll behave different. because directory seperator is different in both systems.

I would write this code as below:

context.Files.RemoveAll(x => x.EndsWith("jquery.js", StringComparison.OrdinalIgnoreCase));

@ninomartini is it Angular?

thanks @sean.alford, updated.

we keep this issue open, and let you know when we finish it. probably it will be finished in next milestone

I think the new one is Gravatar! Am I correct @armanozak?

Followed the KendoUI documents (getting started and deferred-initialization)

  • Added Telerik.UI.for.AspNet.Core.Trial NuGet package.
  • Added tag helpers of KendoUI: _ViewImports.cshtml.
  • Called context.Services.AddKendo(); in the ConfigureServices of the web module.
  • Creates view components (for script and style imports) and added to the layout via ABP Layout hook system.
  • Used the .Deferred() as explained in its documentation. In this way, I make the component scripts rendering at the end of the page, instead of inline.

See the commit => https://github.com/abpframework/abp/commit/ec3ff48ef0e47432bccc1e11f87b0d026cf2f8be

thank you for the feedback. we reproduced it. It's a problem about this open issue on Angular We have fixed the problem, and it'll be fixed when we release it. When next version comes, remove yarn.lock (or package-lock.json) in your project and install packages again.

it's completed... but you didn't add any features that's why you see that

Feature management is an ABP Module https://github.com/abpframework/abp/tree/dev/modules/feature-management

Features are part of the editions (packages). They can provide different price and options to the tenants in your SaaS application. there's no document yet (will be here soon https://docs.abp.io/en/abp/latest/Features) but you can check this unit test to see how it works https://github.com/abpframework/abp/blob/dev/modules/feature-management/test/Volo.Abp.FeatureManagement.Application.Tests/Volo/Abp/FeatureManagement/FeatureAppService_Tests.cs

I couldn't reproduce it in MVC. Are you using Angular?

Showing 1811 to 1820 of 1957 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 20, 2024, 08:30