If your company is using employee IDs for user registration and it's difficult to distinguish users without their names, how can add the fields for name and surname in the member addition and listing interfaces in the organization.
In Language Management, it is desired to add the functionality of adding Language Text. Currently, our team is also facing the following issue.
https://support.abp.io/QA/Questions/3490/Is-there-any-way-to-add-an-entry-in-language-text-manually-through-UI-without-editing-the-json-file
I hope to use ABP Suite to generate Excel export functionality with localized column names, so that there is no need to modify the code again after it's generated.
Hi @zhaof,
You should not be able to select
Guid
type in Suite's Crud Page Generator UI if the solution's UI is Blazor. Because Blazor components doesn't supportGuid
type.Is it a module template? Or how did you add that property with Guid type?
Hi yekalkan,
Yes, I used a module template, but Blazor components do not support the guid type. My suggestion is to either not generate the guid type or convert it to a character type to avoid compilation errors.
eCheck 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:
There is an error on the generated Blazor page when creating a Guid type field
hi
Please refer to https://github.com/dotnet/aspnetcore/issues/38842#issuecomment-1342540950
This seems a aspnetcore problem.
hi maliming ,
It will be OK if I add following statements. This is a change of net7blazor service. I suggest that DisableImplicitFromServicesParameters = true,or explain it in the doc.
context.Services .AddServerSideBlazor() .AddHubOptions(opt => { opt.DisableImplicitFromServicesParameters = true; });
This error also occurs Blazorise FileEdit component