I'm trying to find a way to escape word from date format in angular and show result as: 2016-12-23 23:59 GMT
. When I'm using next code
'date:"yyyy-MM-dd HH:mm":"GMT"'
The angular shows date without any problem, but without word GMT. However I'm trying to pass a word "GMT" and escape it,
'date:"yyyy-MM-dd HH:mm":"GMT" \"GMT\"'
I'm getting an syntax error.
This date format I'm using as cellFilter for my ui-grid and setting from controller. This is plunker with my problem
Where is my mistake?
I'm trying to find a way to escape word from date format in angular and show result as: 2016-12-23 23:59 GMT
. When I'm using next code
'date:"yyyy-MM-dd HH:mm":"GMT"'
The angular shows date without any problem, but without word GMT. However I'm trying to pass a word "GMT" and escape it,
'date:"yyyy-MM-dd HH:mm":"GMT" \"GMT\"'
I'm getting an syntax error.
This date format I'm using as cellFilter for my ui-grid and setting from controller. This is plunker with my problem
Where is my mistake?
Share Improve this question edited Nov 14, 2016 at 21:26 antonyboom asked Nov 14, 2016 at 21:10 antonyboomantonyboom 1,1812 gold badges17 silver badges47 bronze badges3 Answers
Reset to default 10You can pass the escape string into your format date string, like this:
cellFilter: 'date:"yyyy-MM-dd HH:mm \'GMT\'":"GMT"'
The result: http://plnkr.co/edit/0FbYfjehnNo26Fw8wKva?p=preview
Could you not just append it?
{{'date:"yyyy-MM-dd HH:mm":"GMT"'}} GMT
You can always make you own custom filter, that accepts date and format it to a desired dispaly format with maybe moment.js or etc...