Activities of "serdar.genc@talentra.net"

i want to save blog image on azure storage. How can i handle this ?

  • ABP Framework version: v4.3.0
  • UI type: MVC
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): no
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.

Showing 71 to 80 of 101 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 19, 2024, 10:13