0

Is there any way to make a persion (Hejri Shamsi) Calender in angular 2 or is there any way to convert Gergorian calender to persion?

SeleM
  • 9,310
  • 5
  • 32
  • 51
Mohammad
  • 87
  • 1
  • 2
  • Check this : http://stackoverflow.com/questions/37514454/convert-gregorian-date-to-persianjalali-date-in-angular-2-and-ionic-2 – SeleM Feb 28 '17 at 12:41

1 Answers1

0

If you need to convert the date in .ts use jalali-moment

import * as moment from 'jalali-moment';
let jalaliDate = moment("1989/1/24").format('jYYYY/jM/jD'); // 1367/11/4

but if you need sth to use in .html use jalali-angular-datepicker more info here

amin arghavani
  • 1,883
  • 14
  • 21