Sure I send you a email.
Thank you,
Thank you maliming, sorry but I don't know where can I put this sentence, is in menu class?
- ABP Framework version: v5.0.0-rc2
- UI type: Blazor
- DB provider: EF Core
- Tiered (MVC) or Identity Server Separated (Angular): no
- Exception message and stack trace: no
- Steps to reproduce the issue:"generate page from ABP Suite (rc1 is lastest available now) autocomplete item.DisplayName null exception on edit modal"
- looks like something else is changed in Blazorise
We'll check this
This problem have a solution?, I'm having the same problem.
Hello finding in google a solution, I found this:
https://tagmerge.com/issue/abpframework/abp/11364
The solution offered by Lian found.
Then please close this issue.
Thank you,
Thank you cotur.
Hello, can you close this question and refund?, because not was anwared many days.
Thank you,
Hi,
We found the problem and will fix it in the next version. your ticket refunded.
Fow now, you can try:
Open
<YourProjectName>HttpApiClientModule
:Configure<AbpVirtualFileSystemOptions>(options => { options.FileSets.AddEmbedded<<YourProjectName>HttpApiClientModule>(); });
Put the JSON file in the
ClientProxies
directory of.HttpApi.Client
project and set it as an embedded file.BTW, you can delete these changes when you upgrade to next version.
This steps fix my issue.
Thank you so much.
Sorry, I remember wrong. We are trying to fix that.
No problem thank you for your help.
Hello I got this answare of maliming: Answered by maliming. — Solution: Add these configure to your Blazor project.
Configure<AbpAspNetCoreMvcOptions>(options => { options.ConventionalControllers.FormBodyBindingIgnoredTypes.Add(typeof(CreateFileInputWithStream)); });
Configure<AbpAspNetCoreMvcOptions>(options => { options.ConventionalControllers.FormBodyBindingIgnoredTypes.Add(typeof(ProfilePictureInput)); });
But I don't know where include this code: If I include inside this method, not recognize this type: AbpAspNetCoreMvcOptions