[EngincanV] said:
[IgorG] said:
[EngincanV] said:
[IgorG] said:
[EngincanV] said:
[IgorG] said:
for some reason i get an error
Volo.Abp.Studio.AbpStudioException: Exception of type
'Volo.Abp.Studio.AbpStudioException' was thrown.i logged in using command:
abp login
What is your license type? (It should be
Business
orEnterprise
to be able to get the source code of the module.)i have a Team license. In this case how can i get markup of the UserManagement.razor page ?
Okay, no problem. I’ve shared the related file with you via email — please check your inbox and let me know if you need any further assistance.
Thank you. I see the layout. Can you also send me a code behind file ?
Sure, sent it over via email.
Thank you. This helped me a lot
[EngincanV] said:
[IgorG] said:
[EngincanV] said:
[IgorG] said:
for some reason i get an error
Volo.Abp.Studio.AbpStudioException: Exception of type
'Volo.Abp.Studio.AbpStudioException' was thrown.i logged in using command:
abp login
What is your license type? (It should be
Business
orEnterprise
to be able to get the source code of the module.)i have a Team license. In this case how can i get markup of the UserManagement.razor page ?
Okay, no problem. I’ve shared the related file with you via email — please check your inbox and let me know if you need any further assistance.
Thank you. I see the layout. Can you also send me a code behind file ?
[EngincanV] said:
[IgorG] said:
for some reason i get an error
Volo.Abp.Studio.AbpStudioException: Exception of type
'Volo.Abp.Studio.AbpStudioException' was thrown.i logged in using command:
abp login
What is your license type? (It should be
Business
orEnterprise
to be able to get the source code of the module.)
i have a Team license. In this case how can i get markup of the UserManagement.razor page ?
[EngincanV] said:
[IgorG] said:
[EngincanV] said:
Hi, when you need to add new columns or extend existing module entities, the recommended approach is to use Module Entity Extensions. This method automatically includes the new columns in the DataGrid, as well as in the create and update forms.However, it doesn't support autocomplete functionality out of the box. From your scenario, it looks like you need an autocomplete component that can filter or search for an entity record as the user types. In this case, you'll need to implement the required changes manually.
To do this:
- Override the
UserManagement.razor
page in the identity-pro module.- Add your custom autocomplete component to both the edit and create models.
- On the backend side, extend the
IdentityUser
entity in your application by creating a new user entity and add your custom logic accordingly.Regards.
Override the UserManagement.razor page in the identity-pro module. - in this case i need the layout of the UserManagement.razor page. Where can i get it ?
Hi, you can get the source code of the identity-pro module with the following command:
abp get-source Volo.Abp.Identity.Pro
This command will install the source code of the Identity Pro module (I guess you have access?), and then you can find the
UserManagement.razor
in the Blazor project.Regards.
for some reason i get an error Volo.Abp.Studio.AbpStudioException: Exception of type 'Volo.Abp.Studio.AbpStudioException' was thrown.
i logged in using command: abp login
[EngincanV] said: Hi, when you need to add new columns or extend existing module entities, the recommended approach is to use Module Entity Extensions. This method automatically includes the new columns in the DataGrid, as well as in the create and update forms.
However, it doesn't support autocomplete functionality out of the box. From your scenario, it looks like you need an autocomplete component that can filter or search for an entity record as the user types. In this case, you'll need to implement the required changes manually.
To do this:
- Override the
UserManagement.razor
page in the identity-pro module.- Add your custom autocomplete component to both the edit and create models.
- On the backend side, extend the
IdentityUser
entity in your application by creating a new user entity and add your custom logic accordingly.Regards.
Override the UserManagement.razor page in the identity-pro module. - in this case i need the layout of the UserManagement.razor page. Where can i get it ?
Where in the markup should i put it <AbpInput TItem="string" @bind-Value="SelectedDepartmentId" Label="Department" /> ?