We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Date
The text was updated successfully, but these errors were encountered:
Will only consider time format? Is there a case where there is an object attribute?
E.g:blog.writer.name? If the Writer here is null?
Sorry, something went wrong.
Hi @jonny-xhl
We made this update for date & datetime datetable format extensions for abp.
date
datetime
Example:
{ title: l("LastModificationTime"), orderable: true, data: 'lastModificationTime', dataFormat: "datetime" }
In your case, you can use render option to handle different scenarios for your object.
render
{ title: "MyTitle", data: "myProperty", render: function(myProperty){ if(!myProperty) { return "not-exist"; } return myProperty; } }
cotur
No branches or pull requests
The text was updated successfully, but these errors were encountered: