Activities of "EngincanV"

Answer

Hi, this was a known issue and it's fixed with the new versions. Can you try v9.1.2 or 9.2.0+, please?

Hi, you can create a localizable page, but you need to use Dynamic Widgets, and define your page on code with the localized values. Then in the page management page, you can select the URL, and also select the related widget to be rendered on the page.

Regards.

Hi, this usually happens because your React Native client app is not registered properly as a public client (i.e., without a client secret) in the OpenIddict/OpenId configuration. Can you check or share your openiddict configurations?

We noticed in our application that it loads the page pretty quickly first, but non-interactive, then after some seconds, loads the application WebAssembly which is interactive. This is, as far as I've understood, the pre-rendering showing a non-interactive server-side rendered version of the page as a placeholder while the client application is loading.

Yes, that's totally correct. This is how our Blazor WebApp template works.

Is there a way to skip the step of fetching everything twice, first on the server and then on the client? Users mistake the prerendered page to be a broken page that is not working. We are currently doing all loading of data in the OnInitializedAsync lifecycle method.

If you don't want this behavior, I suggest you go with Blazor WASM.

Also, is it very complex to convert form an ABP Blazor WebApp to ABP Blazor WASM, and do you have any guide for doing so?

Actually, we don't have a guide to show you how to migrate from Blazor WebApp to Blazor WASM, but we have a guide that shows the opposite, migrating from Blazor to Blazor WebApp, which you can check at https://abp.io/docs/9.2/release-info/migration-guides/abp-8-2-blazor-web-app

You can check this documentation to see the main differences in the template and apply it to your own template to make it pure Blazor WASM application. For example, as a first step, you need to configure AbpAspNetCoreComponentsWebOptions and set IsBlazorWebApp property as false etc.

Hello,
Can you give me your email?

You can send your solution to support@abp.io website (with the ticket number - #9332). Regards.

Hi, in .NET you can apply HMAC validation to all your API endpoints by implementing a custom middleware. This ensures that all incoming requests are validated for authenticity and integrity using a shared secret key, for example.

However, we don't provide such a middleware by default and you need to create it yourself. But, after you create your middleware, if you want you can use our own String Encryption system.

Regards.

so i do not need to change this line: installdir_update="${installdir}/Update.exe"

Sorry, for the inconvenience. ${installdir} should be changed for Mac. And also, instead of update.exe, you should rename it as update.

Hi,

Thank for your suggestion.

Is there any way to change the name of javascript function when it is dynamically generated at runtime. For example: In report module I have a ReportItemAppService in namespace MZH.MHIBS.Report with GetList method. I add this module into AMLReportService after running, the javascript code will be generated like this:

abp.utils.createNamespace(window, 'mZH.mHIBS.report.reportItems.reportItem'); 
 
mZH.mHIBS.report.reportItems.reportItem.getList = function(options, permission, ajaxParams) { 
  return abp.ajax($.extend(true, { 
    url: abp.appPath + 'api/aml-report-service/report-item' + abp.utils.buildQueryString(...) + '', 
    type: 'GET' 
  }, ajaxParams)); 
}; 

Now, if I use this module in CICReportService, the javascript code will be generated the same. I can change the API api/aml-report-service/report-item and api/cic-report-service/report-item but the name of javascript function still the same. How to change it.

Unfortunately, there is no support for that, and the dynamic JS API client proxy is generated by method naming convention.

Regards.

Hi, when you use module entity extensions, ABP renders the ExtensionProperties component (https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.BlazoriseUI/Components/ObjectExtending/ExtensionProperties.razor) on the create/edit models.

So, my understanding was that by setting the data type of my property to as shown below, it should result in a text area field where I can type multiple lines of text, but that is not the case.

You are right that when you use the DataType.MultilineText, it should have rendered a textarea (MemoEdit component in Blazorise), but it seems currently it's not supported (see for current data-type equivalent components: https://github.com/abpframework/abp/blob/24b3bf2b79f5a973948a5f6d4cfcae891e216f01/framework/src/Volo.Abp.BlazoriseUI/BlazoriseUiObjectExtensionPropertyInfoExtensions.cs#L231-L249).

I've created an issue for that: https://github.com/abpframework/abp/issues/22935

Regards.

Hi, lpx-settings component comes from @volosoft/ngx-lepton-x. You can use the following command to add the related package with the source code:

abp add-package @volosoft/ngx-lepton-x --with-source-code

Then, you can find the settings.component.ts and the relevant HTML file and replace the component as you wish.

Regards.

Showing 141 to 150 of 1343 entries
Learn More, Pay Less
33% OFF
All Trainings!
Get Your Deal
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.0.0-preview. Updated on September 10, 2025, 06:30