Starts in:
2 DAYS
9 HRS
37 MIN
58 SEC
Starts in:
2 D
9 H
37 M
58 S

Activities of "ismcagdas"

Hi @selinkoykiran

I tried with VS 2019 and it worked as expected for me. When I check the package status, it is correctly marked as a PreRelease package. Sometimes Visual Studio cna mix the requests for getting the package information from the package source. Could you wait for a few seconds when you click the PreRelease checkbox and see if it makes any difference ?

By the way, does this cause any problem on your CI/CD pipeline ?

Hi @MichelZ

Yes, the release of 4.4.1 is still in progress, could you try again when the release is completed. We hope to complete it today.

Thanks,

Hi @piseth

Sorry for the late reply. You can include this plugin to your app by following the steps below;

  1. Install the package to your project
npm install chartjs-plugin-datalabels --save
  1. Then, add the script to abp.resourcemapping.js under your web project
module.exports = {
    aliases: {
        
    },
    mappings: {
        "@node_modules/chartjs-plugin-datalabels/dist/*.*": "@libs/chartjs-plugin-datalabels/"
    }
};
  1. After all, you can inject the script to the page you want to use. For example, you can include it into HostDashboard.cshtml as shown below;
@section scripts {
    <abp-script src="/libs/chartjs-plugin-datalabels/chartjs-plugin-datalabels.js" />
    <abp-script src="/Pages/HostDashboard.js" />
}
  1. You can directly use ChartDataLabels in your JS files (HostDashboard.js for example). You can't modify existing charts on the HostDsahboard becasue those are placed to the page from modules. However, you can remove those charts and create your own chards and use ChartDataLabels in them. You can take a look at https://github.com/chartjs/chartjs-plugin-datalabels/discussions/215 for a sample usage.

Hi @piseth

We will assist you via email.

Hi,

I have added the user with email address "arunp@genixtec.com" to your organization. Did you get a similar error to https://support.abp.io/QA/Questions/1407#answer-5760faaf-e3d5-15a6-1783-39fcc3a531b5 ?

It will not cause any problems becasue app services and controllers are also intercepted by default and a unitOfWork is created for them. We are still trying to understand the cause of this problem.

Hi @lan.dang

Sorry for my late reply. It took some time to detect the cause of the problem. We figured out this with @maliming. It seems like this is caused by https://github.com/abpframework/abp/issues/8740. As a workaround, you can remove app.UseUnitOfWork() from your WebModule. When the related issue is resolved, you can enable it back.

Hi,

For point 1 -> There are minor differencese in some modules which you can see module detail page on https://commercial.abp.io/modules For point 2, unfortunately we don't have such a document but there are minor differences.

Hi @KuldeepRathi

Payment module's public UI, the one your customers make payment, is available only in MVC version. You can use Angular UI for your admin app and MVC for the public website.

There are minor differencese in some modules which you can see module detail page on https://commercial.abp.io/modules

Hi **@lan.dang **

Sorry for my late reply. Could you also tell me how do you start the payment process on your app ? I started the app but it only contains PaymentSucceed page. I couldn't find a page which initiates the payment process.

Also, your app is missing the initial migration, I have removed and re-added the migration to run the app.

Thanks,

Hi,

Payment module shouldn't recirect to your final page if status is different than Succes. Is it possible to share your project with us via email ? If so, could you share it with info@abp.io including the number 1484 ?

I can take a look at it for you and fix the problem.

Thanks,

Showing 31 to 40 of 72 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 20, 2024, 13:06