Hi Lim,
Please specify what do you have tried so far. And what is not work.
Regards.
Catch up wih the Appery.io community on our forum. Here you'll find information on the lastest questions and issues Appery.io developers are discussing.
https://forum.appery.io/
Hi Lim,
Please specify what do you have tried so far. And what is not work.
Regards.
Hi,
After adding this codes that you have provided:
var d = new Date(value),
minutes = d.getMinutes().toString().length == 1 ? '0'+d.getMinutes() : d.getMinutes(),
hours = d.getHours().toString().length == 1 ? '0'+d.getHours() : d.getHours(),
ampm = d.getHours() = 12 ? 'pm' : 'am',
months = ['Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec'],
days = ['Sun','Mon','Tue','Wed','Thu','Fri','Sat'];
return days[d.getDay()]+' '+months[d.getMonth()]+' '+d.getDate()+' '+d.getFullYear()+' '+hours+':'+minutes+ampm;
I am able to display the date and time, but not able to send out messages.
Hi LIm,
May be there is some errors in console?
Please check it out whether you have service invoking on "send message" button click.
Also please take a look on the network tab when you send the message. Is there any errors?
Regards.
Lim,
I can not see create request.
Please make screen shots where we can see create request and all request parameters. And response.
Regards.
Hi i am not able to screenshot the request as it is very laggy and keep loading.
Will you be able to see it from here?
Hi Lim,
I've checked your app on http://appery.io/app/view/8ede79da-08... page and it looks ok.
See details:
http://prntscr.com/41fm3l/direct
Did you managed to fix this problem?
If not - please specify steps how we can to reproduce this problem.
Regards.
Hi, yes it works this way.
But however, when i add in the codes your team provided, It would not be able to send out messages successfully.