If you're creating a bug/problem report, please include followings:
- ABP Framework version: v4.4.2
- UI type: Angular
- DB provider: EF Core
- Tiered (MVC) or Identity Server Separated (Angular): no
Hi,
I have a few extra properties to extend the IdentityUser:
- DateOfBirth
- Description
This works great throughout the application. However, i want to be able to control how the input is being rendered and how the values are being displayed. The DateOfBirth is render in the list as: But i want to display it without the time, perhaps even apply a default format.
When i open the edit/create form,i cant change the value:
Second thing is, i want to the Description field to be rendered as a textarea
instead of input type="text"
I have read the documentation on https://docs.abp.io/en/abp/latest/Module-Entity-Extensions but cant seem to find anything that can help me with this.
Kind regards, Jeroen
2 Answer(s)
-
0
Hi @Jeroenmin
Can you share
EntityPropContributors
andFormPropContributors
code so that I can find a solution?You can check the documents below: Data Table Column (or Entity Prop) Extensions for Angular UI Dynamic Form (or Form Prop) Extensions for Angular UI
-
0
I somehow missed the Dynamic Form (or Form Prop) Extensions for Angular UI documentation. This looks exactly what i need. Thanks for sharing.
Perhaps you could link to those pages from the Module-Entity-Extensions
Kind regards