I didn't notice the PR, I thought I would be informed in this post.
The commercial UI files also need to be updated too, I can't see them from a PR of the communtiy.
Nope, the issue still exists.
Guys, any news?
OK it's my mistake.
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.
Deleting an org contains member will raise an exception: Entity OrganizationUnit not exist: id = xxxxxxxx
I have to remove all the members from the org, then delete the org.
It seems it's related to the DateTime format.
I found there is a warning in the browser console:
The specified value "2020/7/18 0:00:00" does not conform to the required format, "yyyy-MM-dd".
If I remove property.Attributes.Add(new DataTypeAttribute(DataType.Date));
, value can be displayed, but with time part which I don't want.
I defined an extension property Birth
to the IdentityUser
:
ObjectExtensionManager.Instance.Modules()
.ConfigureIdentity(identity =>
{
identity.ConfigureUser(user =>
{
user.AddOrUpdateProperty<DateTime?>(
"Birth",
property =>
{
property.UI.OnTable.IsVisible = false;
property.Attributes.Add(new DataTypeAttribute(DataType.Date));
}
);
});
});
The birth property is optional so I give it DateTime?
type.
The create form works well, and I can see the birth value is stored to the DB successfully:
However when I edit the user, I cannot see the birth value: