With Android 5.0 (version 5.0.2 exactly), a click on date widget systematically crashes the application
Regards
Yves
Yves
--
Fujitsu - RunMyProcess
---
You received this message because you are subscribed to the Google Groups "Fujitsu RunMyProcess Developer Community" group.
To unsubscribe from this group and stop receiving emails from it, send an email to supportforum...@runmyprocess.com.
To post to this group, send email to suppor...@runmyprocess.com.
Visit this group at http://groups.google.com/a/runmyprocess.com/group/supportforum/.
To view this discussion on the web visit https://groups.google.com/a/runmyprocess.com/d/msgid/supportforum/b47b0209-5a23-4509-96f7-360ac248297c%40runmyprocess.com.
For more options, visit https://groups.google.com/a/runmyprocess.com/d/optout.
In order to confirm the issue, I've made a webinterface with only one date widget then passed the apps to LIVE and I still face the issue indeed. It crashed after 1 or 2 seconds
Tab : Samsung tab S 8.4 (model SM-T700)
Android : 5.0.2
Kernel : 3.4.39-4627885 dpi@SWDC3318#1 Frid Jun 5
Hope it helps
Regards
Yves
By the way, another issue with date widget in RunMyApp :
When initializing the default date with following code in a JS listening to the date widget :
my_date = new Date();
currentTime = Math.round(my_date.getTime()/ 1000);
RMPApplication.setVariable("date",currentTime);
No date is displayed in RunMyApp (it works fine on laptop). Nevertheless the date is initialized : when I load the value in a collection, the default current date is well loaded. So it is a display issue on mobile
Regards
Yves
De : Yves de VEYRAC
Envoyé : jeudi 16 juillet 2015 19:30
À : 'Murali' <mkumma...@runmyprocess.com>; pku...@runmyprocess.com
Objet : RE: [supportforum:7637] Re: Widget date doesn't work with Android 5.0
Hello Murali,
I’ve already responded on Tuesday . See below. It doesn’t work.
Did you not receive ?
Regards
Yves
De : Yves de VEYRAC
Envoyé : mardi 14 juillet 2015 21:24
À : 'Pankaj Kumar' <pku...@runmyprocess.com>
Objet : RE: [supportforum:7637] Re: Widget date doesn't work with Android 5.0
Hello Pankaj,
It crashes as well. After clicking on date widget, it displays for 2 seconds the pop-up ‘define date’ showing a calendar and then crashes
Regards
Yves
De : Pankaj Kumar [mailto:pku...@runmyprocess.com]
Envoyé : mardi 14 juillet 2015 13:24
À : suppor...@runmyprocess.com; Yves de VEYRAC; Yves de Veyrac
Objet : Fwd: [supportforum:7637] Re: Widget date doesn't work with Android 5.0
De : Murali [mailto:mkumma...@runmyprocess.com]
Envoyé : jeudi 16 juillet 2015 18:48
À : suppor...@runmyprocess.com; pku...@runmyprocess.com
Cc : Yves de VEYRAC <yves.d...@etrali.com>; yves.d...@gmail.com
Objet : Re: [supportforum:7637] Re: Widget date doesn't work with Android 5.0
Ce message peut contenir des informations confidentielles et/ou personnelles et a été envoyé uniquement à l'usage de la personne ou de l'entité citée ci-dessus. Si vous receviez ce courrier électronique par erreur, merci de bien vouloir en avertir ETRALI par retour et d'effacer l'original. Toute forme d'utilisation de ce courrier électronique par vous est strictement interdite.
This e-mail may contain confidential and/or privileged information and is intended only for the use of the individual or entity named above. If you have received it in error, please advise ETRALI immediately by reply e-mail and delete the original. Any further use of this e-mail by you is strictly prohibited.
It works when using below code found in this post https://groups.google.com/a/runmyprocess.com/forum/#!topic/supportforum/ZWGgYQ4EX_c
var today = new Date();
var todayString = today.toISOString().substring(0, 10); //get the date portion which has the same format as RFC3339
document.getElementById("id_date").value = todayString;
So pb solved
Regards
Yves