Activities of "EngincanV"

But since you use Blazorise, can you also integrate the BlazeSpark - Admin & Dashboard theme from Blazorise?

Hi, this is a custom need, so you should manually implement it if you want, but yes it's possible.

And the chat module should open in a disappearing overlay or in a popup and not on the page, so the users don't loose the work that they are you doing.

Please, create a new question for that.

OK that will work for now, can you let me know how to track this so I know when it is fixed?

And since this is a bug can you refund my question credit?

Thanks,

Karim

I have refunded your ticket, just now. Thanks again for reporting the problem. This problem has been fixed and will included in the first upcoming release. (probably with v8.1.0)

Hi, for a quick workaround, please remove the .ToString("d") statement from the faulty lines and add (int) before the context. statement. For example:

{(int)context.Message.SenderUserType}

I'll check and fix this problem for ABP Suite. Thanks for reporting.

Hi, we don't support it yet. We have an issue for that in backlog. Regards.

Answer

For the backend side, please remove the *.WeChat.Web and *.AliPay.Web projects from both Volo.Payment.sln and your project's solution reference. )

I'll check for the frontend side.

Answer

ABP Framework version: latest

Can you say which version do you use exactly, the latest stable (v8.0.5) or the latest preview (v8.1.0-rc.3)?

Answer

It seems you did not define the settings before setting them. You should create a class derived from the SettingDefinitionProvider class in order to define its settings:

public class MySettingProvider : SettingDefinitionProvider
{
    public override void Define(ISettingDefinitionContext context)
    {
        context.Add(
            new SettingDefinition("BranchSettings.IsServer", "false"),
            new SettingDefinition("BranchSettings.ServerUrl"),
            new SettingDefinition("BranchSettings.BranchId")
        );
    }
}

Please follow the documentation for more info: https://docs.abp.io/en/abp/8.1/Settings#defining-settings

Answer

Hi, if you want to create a custom component and add it to the settings page, you can follow https://docs.abp.io/en/abp/latest/Modules/Setting-Management#create-a-setting-view-component this documentation.

You need to define a view component and then, add it in your *SettingPageContributor class as described in the documentation.

Hi, How can I save and get those values? using ISettingManager ?

You can use the ISettingProvider to get the value of a setting. It's recommended to use it to read the setting values because it implements caching.

You can use the ISettingManager to set a setting.

Hi, From where I write this code , I mean save and get because I just created as you mentioned in the previous email and done some html components as in the attachment.Can you please describe me the steps involved? because we are using abp Single layer project.

You need to write your code in the related view component class. I had written an article to add a setting group, which you can found at https://community.abp.io/posts/how-to-hide-abp-related-endpoints-on-swagger-ui-mb2w01fe

You can check it for all related steps. Regards.

Answer

Hi, if you want to create a custom component and add it to the settings page, you can follow https://docs.abp.io/en/abp/latest/Modules/Setting-Management#create-a-setting-view-component this documentation.

You need to define a view component and then, add it in your *SettingPageContributor class as described in the documentation.

Hi, How can I save and get those values? using ISettingManager ?

You can use the ISettingProvider to get the value of a setting. It's recommended to use it to read the setting values because it implements caching.

You can use the ISettingManager to set a setting.

Hi, currently we are not supporting Timespan as a property type. I'll create an issue for that.

Regards.

Showing 751 to 760 of 1359 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.1.0-preview. Updated on November 07, 2025, 08:20