You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
abp/docs/en/UI/Angular/DateTime-Format-Pipe.md

505 B

DateTime Format Pipes

You can format date by Date pipe of angular.

Example

<span> {{today | date 'dd/mm/yy'}}</span>

ShortDate, ShortTime and ShortDateTime format data like angular's data pipe but easier. Also the pipes get format from config service by culture.

ShortDate Pipe

<span> {{today | shortDatePipe }}</span>

ShortTime Pipe

<span> {{today | shortTimePipe }}</span>

ShortDateTime Pipe

<span> {{today | shortDateTimePipe }}</span>