Activities of "serdar.genc@talentra.net"

Answer

hi serdar.genc@talentra.net

How many permissions does your app have? You can resolve it by configure FormOptions. I will check and fix it.

Configure<FormOptions>(options => 
{ 
    options.ValueCountLimit = 1024 * 2; 
    //options. 
}); 

The fix PR https://github.com/abpframework/abp/pull/8810

Hi @maliming, Thank you so much, My problem is solved with FormOptions. permissions :

Answer

When enable Emailing

Answer

hi serdar.genc@talentra.net

Open the GlobalFeatureConfigurator class in the Domain.Shared project and add the following codes to the Configure method.

 
OneTimeRunner.Run(() => 
{ 
    GlobalFeatureManager.Instance.Modules.CmsKit(cmsKit => 
    { 
        cmsKit.EnableAll(); 
    }); 
 
    GlobalFeatureManager.Instance.Modules.CmsKitPro(cmsKitPro => 
    { 
        cmsKitPro.EnableAll(); 
    }); 
}); 

Thank you @maliming

Answer

ABP Framework version: v4.3 UI type: MVC DB provider: EF Core Tiered (MVC) or Identity Server Separated (Angular): no

When run, 'abp add-module Volo.CmsKit.Pro'

Answer

@maliming

@serdar,

you need to run gulp command after adding Forms module. To do this, open your Web folder and write gulp

thanks @Alper

Answer

@maliming

Answer

ABP Framework version: v4.3 UI type: MVC DB provider: EF Core Tiered (MVC) or Identity Server Separated (Angular): no

When create new form :

Hello David. I will send you a sample project that DevExpress has been fully implemented.

I'd love this project too :)

Email?

Hello David. I will send you a sample project that DevExpress has been fully implemented.

Answer

@Serdar

If you don't want to update your project to v4.3.0, you can run the following Cli commands:

dotnet tool uninstall Volo.Abp.Cli -g dotnet tool install Volo.Abp.Cli -g --version 4.3.0-rc.2 abp add-module Volo.LeptonTheme --with-source-code --add-to-solution-file (Run in the folder of the .Sln file of your project) dotnet tool uninstall Volo.Abp.Cli -g dotnet tool install Volo.Abp.Cli -g

This commands will install ABP CLI with the latest preview version, add LeptonTheme correctly and them switch ABP CLI version back to 4.2.2

Thanks @yekalkan. I will use this.

Showing 51 to 60 of 74 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 19, 2024, 10:13