Activities of "liangshiwei"

Hi @talhazengin

I checked your code. You added workers repeatedly.

Quartz integration will automatically add workers, See Source Code. So, for quartz you don't need to add it manually.

There is another reason for repetition. You did not specify the job identity, for quartz, it is two different jobs.

In the next version, there will be an option to disable automatic add. See https://github.com/abpframework/abp/pull/3382.

liangshiw@outlook.com

You can send a email to me.

Using layout-hooks, you can add code to specific locations of the layout (including the top).

Is there an option to move a bundle to the top of a page and/or header

There is currently no such way.

Is there an option to remove scripts from a bundle, we may need to move the jquery script from the global bundle to another bundle with the telerik components that is loaded earlier on the page.

You can delete scripts through custom bundle contributors. Example:

public class CustomGlobalScriptContributor: BundleContributor
{
    public override void ConfigureBundle(BundleConfigurationContext context)
    {
        context.Files.RemoveAll(x => x.Contains("jquery"));
    }
}
context.Services.Configure<AbpBundlingOptions>(options =>
{
    options
        .ScriptBundles
        .Configure(StandardBundles.Scripts.Global, bundle => {
            bundle.AddContributors(typeof(CustomGlobalScriptContributor));
        });
});

Did you reproduce the problem? I tested version v2.4, It works fine.

See https://docs.abp.io/en/abp/latest/Customizing-Application-Modules-Overriding-User-Interface for more information.

Hi @talhazengin

I can't reproduce your problem, can you provide more information. If you can use the CLI to create a simple project to reproduce this problem is better :).

I will check this.

HI @talhazengin, There are two ways:

  1. Get all tenants and change the current tenant to get their data:
using (_currentTenant.Change(tenant.Id))
{
      // query....
}
  1. Disable multi-tenant filter:
using (_dataFilter.Disable<IMultiTenant>())
{
       // query....
}

Hi

Pre-defined application modules provide login and other pages. Here are all predefined modules: https://commercial.abp.io/modules.

If you want to change the page of a predefined module, see https://docs.abp.io/en/abp/latest/Customizing-Application-Modules-Overriding-User-Interface for more information.

In addition, you can write your own page directly in your own project, see https://docs.abp.io/en/abp/latest/Getting-Started?UI=MVC&DB=EF&Tiered=No for more information.

Answer

Does It reset the incident count limit monthly ?

And do you separate the incident and the question because maybe there will be something wrong in document or new version release we want just ask ?

About new version issues, You can reply to the problem you encountered in a version-specific post,it is not counted as a incident/question. e.g https://support.abp.io/QA/Questions/100. But just ask, you can create an issue directly on github.

Showing 5611 to 5620 of 5633 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 19, 2024, 10:13