Hi,
ABP show a BusinessException detail in console. But I can not get a data object from modal.js. I used abp modal and I throw BusinessException, then I need to requestId in my modal.js file. I want to get error data which I marked in the picture on javascript file. Your previous answer was not sufficient for my question. Can you help about this? Thanks
Check the docs before asking a question: https://docs.abp.io/en/commercial/latest/ Check the samples, to see the basic tasks: https://docs.abp.io/en/commercial/latest/samples/index The exact solution to your question may have been answered before, please use the search on the homepage.
If you're creating a bug/problem report, please include followings:
ABP Framework version: v5.3.3
UI type: Blazor
DB provider: EF Core
Tiered (MVC) or Identity Server Separated (Angular): yes / no
Exception message and stack trace:
Steps to reproduce the issue:"
Can you give an example please
Hi,
ABP show a error detail in console and your code is in abp.js file. But I can not get a log detail from another js file. I used abp modal and I throw BusinessException, then I need to requestId in my modal.js file. Can you help about this? Thanks
Check the docs before asking a question: https://docs.abp.io/en/commercial/latest/ Check the samples, to see the basic tasks: https://docs.abp.io/en/commercial/latest/samples/index The exact solution to your question may have been answered before, please use the search on the homepage.
If you're creating a bug/problem report, please include followings:
ABP Framework version: v5.3.3
UI type: Blazor
DB provider: EF Core
Tiered (MVC) or Identity Server Separated (Angular): yes / no
Exception message and stack trace:
Steps to reproduce the issue:"
hi
You can use
SmtpEmailSender
like:
context.Services.Replace(ServiceDescriptor.Singleton<IEmailSender, SmtpEmailSender>());
But why we need to replace again, because I used NullEmailSender only if DEBUG tag.
Hi,
I want to use NullEmailSender only debug configuration. But If I don't remove NullEmailSender service like below code on other environments, I can see only log file and I can not send email from pretest environment. Is this about ABP Framework? I think it doesn't need to remove NullEmailSender service when I used if DEBUG?
** context.Services.Remove(ServiceDescriptor.Singleton<IEmailSender, NullEmailSender>()); **
Thanks
Check the docs before asking a question: https://docs.abp.io/en/commercial/latest/ Check the samples, to see the basic tasks: https://docs.abp.io/en/commercial/latest/samples/index The exact solution to your question may have been answered before, please use the search on the homepage.
If you're creating a bug/problem report, please include followings:
ABP Framework version: v5.3.3
UI type: MVC
DB provider: EF Core
Tiered (MVC): yes
Exception message and stack trace:
Steps to reproduce the issue:"
Hi,
I tried to create new Application Template solution but I think there was a problem here. Can you help about this? I used v5.3.3 version and then I upgraded to v6.0.1 but I got an error both of them.
Thanks
Check the docs before asking a question: https://docs.abp.io/en/commercial/latest/ Check the samples, to see the basic tasks: https://docs.abp.io/en/commercial/latest/samples/index The exact solution to your question may have been answered before, please use the search on the homepage.
If you're creating a bug/problem report, please include followings:
ABP Framework version: v5.3.3
UI type: MVC
DB provider: EF Core
Tiered (MVC): yes
Exception message and stack trace:
Steps to reproduce the issue:"
How to trigger Copy Log button click for this solution, can you give an example? Because, it can not be triggered.
I think you can do this in your globally used script file by using the
id
you gave to the button.Note: If you don't have a global js file, you can do it similarly to the
global.css
' config.$( "#DownloadLog" ).click(function() { alert( "Handler for .click() called." ); });
Actually, we tried like this but it doesn't work
Can you provide to open modal even if exception in OnGetAsync?