"ElifKaya" की गतिविधियाँ

Hi,

When we use select2 dynamical option create on abp-modal with ABP Framework 4.3.3, we had no problem and we were able to use it for a long time.

After we upgrated ABP version to 5.1.1. We have a problem about select2 enabled on abp-modal. But it works on normal page, it doesn't work on the abp-modal only.

Then, we tried to use bootstrap modal instead of abp_modal on the same solution (.net6 and abp V5.1.1) and it worked.

But we don't want to use bootstrap modal instead of abp-modal. I shared some code blocks and UI screenshots. Can you help about this problem?

Thanks for the advice.

This is a successful example for V4.3.3

Same example for V5.1.1 with an error

Same example for bootstrap modal instead of abp_modal

Thanks,

Check the docs before asking a question: https://docs.abp.io/en/commercial/latest/ Check the samples, to see the basic tasks: https://docs.abp.io/en/commercial/latest/samples/index The exact solution to your question may have been answered before, please use the search on the homepage.

If you're creating a bug/problem report, please include followings:

  • ABP Framework version: v5.1.1
  • UI type: / MVC /
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): yes / no
  • Exception message and stack trace:
  • Steps to reproduce the issue:"

Hi,

We upgraded version to 5.1.1 and we noticed that some style properties changed like a tag hover and float property. Can I get information about the following changes?

Bootstrap 5 advanced search links are visually broken

V4.3.3

V5.1.1

nmm site links are visually broken

V5.1.1

V4.3.3

Thanks,

Check the docs before asking a question: https://docs.abp.io/en/commercial/latest/ Check the samples, to see the basic tasks: https://docs.abp.io/en/commercial/latest/samples/index The exact solution to your question may have been answered before, please use the search on the homepage.

If you're creating a bug/problem report, please include followings:

ABP Framework version: v5.1.1 UI type: MVC DB provider: EF Core Tiered (MVC) or Identity Server Separated (Angular): yes / no Exception message and stack trace: Steps to reproduce the issue

Hi,

We want to integrate MiniProfiler library in ABP Framework aplication project. Actually, we can show miniprofiler view, but we can not only sql query parts. (IMAGE 1&2) I noticed that _dbContext is injected on page model class in all miniprofiler examples (IMAGE 3&4), but we are using application layer and inject app service in ABP page model class. I guess that I can not reach sql query because of this reason. (IMAGE3) I shared some images to give more detail. Can you give an advice how to solve this problem?

Thanks

Check the docs before asking a question: https://docs.abp.io/en/commercial/latest/ Check the samples, to see the basic tasks: https://docs.abp.io/en/commercial/latest/samples/index The exact solution to your question may have been answered before, please use the search on the homepage.

If you're creating a bug/problem report, please include followings:

ABP Framework version: v4.4.3 UI type: MVC DB provider: EF Core Tiered (MVC) or Identity Server Separated (Angular): yes / no Exception message and stack trace: Steps to reproduce the issue:"

Hi,

I added console application project (NMM.Design) to create ModelSnapshot.cs on runtime instead of using add-migration Package Manager Console Commands. Because we have to check some manager rules for our business logic before we create ModelSnapshot.cs.

So, I create ModelSnapshot.cs on runtime. I have no problem about dependency injection but I cannot reach applicaiton manager data using manager service on Design layer. I tried same senario on DbMigrator layer and also I cannot reach it on there. But I can reach same applicaiton manager on Domain Layer. Actauly, Domain layer has beed added as project references indirectly on Design or DbMigrator layer. And also I think that I added necessary modeule as dependOn in DesignModule.cs.

Do you have any advice to reach applicaiton manager on other console application project such as DbMigrator layer?

Thank you in advice

Check the docs before asking a question: https://docs.abp.io/en/commercial/latest/ Check the samples, to see the basic tasks: https://docs.abp.io/en/commercial/latest/samples/index The exact solution to your question may have been answered before, please use the search on the homepage.

If you're creating a bug/problem report, please include followings:

ABP Framework version: v4.4.3 UI type: MVC DB provider: EF Core Tiered (MVC) or Identity Server Separated (Angular): yes / no Exception message and stack trace: Steps to reproduce the issue:"

Hi,

We have some questions about feature managment. We want to manage features on backend and also UI side. Firstly, we add GlobalDocsFeatures.cs,

using Volo.Abp.GlobalFeatures;
using Volo.Abp.Reflection;

namespace Siemens.Docs.Features
{
    [GlobalFeatureName("GlobalDocsFeatures")]
    public class DocsFeatures : GlobalFeature
    {
        public const string GroupName = DocsConsts.Name;


        public new const string Enable = GroupName + ".Enable";

        public static string[] GetAll()
        {
            return ReflectionHelper.GetPublicConstantsRecursively(typeof(DocsFeatures));
        }
        public DocsFeatures(GlobalModuleFeatures module)
           : base(module)
        {
        }
    }
}

and then, we enabled in domain module.

      public override void PreConfigureServices(ServiceConfigurationContext context)
        {
            GlobalFeatureManager.Instance.Enable<DocsFeatures>();
        }

Then we check if its enabled, we are adding data tables and, creating seed data of this module. We have no problem so far.

But, we want to manage same feature on UI side. But, it can not be ignored backend code. Forexample, if we disabled this feature on Edition Features Modal, we hope that does not contains this module entitiy and seeder data when we create new tenant.

Can you give an advice to us about this problem?

Thanks, Elif

Check the docs before asking a question: https://docs.abp.io/en/commercial/latest/ Check the samples, to see the basic tasks: https://docs.abp.io/en/commercial/latest/samples/index The exact solution to your question may have been answered before, please use the search on the homepage.

If you're creating a bug/problem report, please include followings:

ABP Framework version: v4.4.3 UI type: MVC DB provider: EF Core Tiered (MVC) or Identity Server Separated (Angular): yes / no Exception message and stack trace: Steps to reproduce the issue:"

Hello,

We pull the CMS kit from the ABP Suite and we use it as a module in our project. After admin user created new page or blog post data in CRUD View, is there a way to translate content data of BlogPosts and Page entities when we show this page on public web site? In the existing structure; If user created content data in english, we can show content only english in the public web site. Can you help us about this problem?

Thanks,

Check the docs before asking a question: https://docs.abp.io/en/commercial/latest/ Check the samples, to see the basic tasks: https://docs.abp.io/en/commercial/latest/samples/index The exact solution to your question may have been answered before, please use the search on the homepage.

If you're creating a bug/problem report, please include followings:

ABP Framework version: v4.4.3 UI type: MVC DB provider: EF Core Tiered (MVC) or Identity Server Separated (Angular): yes / no Exception message and stack trace: Steps to reproduce the issue

Hello,

We pull the CMS kit from the ABP Suite and we use it as a module in our project. We want to create default data as it is in the CmsKitDataSeedContributor.cs. But we can not insert Page and MediaDescriptor data because these entites are protected type. And also, we want to insert image to BlogsPost data but we can not create CoverImageMediaId with using data seeder. CoverImageMediaId can be created from only BlogPosts CRUD View.

Can you help us about this problem?

Thanks,

Check the docs before asking a question: https://docs.abp.io/en/commercial/latest/ Check the samples, to see the basic tasks: https://docs.abp.io/en/commercial/latest/samples/index The exact solution to your question may have been answered before, please use the search on the homepage.

If you're creating a bug/problem report, please include followings:

  • ABP Framework version: v4.4.3
  • UI type: MVC
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): yes / no
  • Exception message and stack trace:
  • Steps to reproduce the issue:"

Hello,

I created a new solution from APB Suite platform with choosing Public Web Site and Cms-Kit. We tried Cms-Kit and we want use it in our project. But, I noticed that TenantId couldn't be created when we insert data to MenuItem entity from Cms -> Menu CRUD view. When I research source code in Volo.CmsKit solution, I thougth that TenantId wasn't set in MenuItem.cs. But this problem has only MenuItem entity, not a Page, Blog or others entities. Will there be an improvement for this issue? Can you help us about this problem?

Thanks, Check the docs before asking a question: https://docs.abp.io/en/commercial/latest/ Check the samples, to see the basic tasks: https://docs.abp.io/en/commercial/latest/samples/index The exact solution to your question may have been answered before, please use the search on the homepage.

If you're creating a bug/problem report, please include followings:

  • ABP Framework version: v4.4.2
  • UI type: MVC
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): yes / no
  • Exception message and stack trace:
  • Steps to reproduce the issue:"

ABP Framework version: v4.3.0 UI type: Razor (MVC) DB provider: EF Core Tiered (MVC)

Hello,

Is there any way I can change Save and Cancel button display name in the following usage?

Thanks,

Hi, I ceated ABP tiered project and added DOC Module by using ABP Suit, but edit button doesn't work in document module. Can you help about markdown edit button? I don't want to change index.cshtml code because I'll use abp doc module as package in our project.

Thanks,

43 प्रविष्टियों में 31 से 40 दिखा रहा है
Made with ❤️ on ABP v8.2.0-preview Updated on मार्च 25, 2024, 15:11