Hi Team,
This is the first time that we've tested the app that we are created in iOS,.
now this is weird and i dont know how to fix it.: in iOS the list is undefined but in android the date was displayed. i hope you can help me here screenshot is in below:
iOS ScreenShot:
https://d2r1vs3d9006ap.cloudfront.net...
Android ScreenShot:
https://d2r1vs3d9006ap.cloudfront.net...
Mapping Screenshot:
https://d2r1vs3d9006ap.cloudfront.net...
code
var stringDate = value;
var d = new Date(stringDate);
console.log(d.toLocaleDateString());
var weekday = new Array(7);
weekday[0]= "(Sun)"
weekday[1] = "(Mon)"
weekday[2] = "(Tue)"
weekday[3] = "(Wed)"
weekday[4] = "(Thu)"
weekday[5] = "(Fri)"
weekday[6] = "(Sat)"
var mmonth = new Array(12);
mmonth[1] = "Jan."
mmonth[2] = "Feb."
mmonth[3] = "Mar."
mmonth[4] = "Apr."
mmonth[5] = "May"
mmonth[6] = "Jun."
mmonth[7] = "Jul."
mmonth[8] = "Aug."
mmonth[9] = "Sep."
mmonth[10] = "Oct."
mmonth[11] = "Nov."
mmonth[12] = "Dec."
return mmonth[d.getMonth()+1] + " " + d.getDate() + ","+ " " + d.getFullYear() + " " + weekday[d.getDay()];
/code
Thank you,