Hello,
I have here 2 possible bugs in Mobione. When I test the application in test center it works allright and looks good; when I generate the .apk file and install it in my Samsung Galaxy II then it does not work:
1) check conection to internet (mode online/offline)
I found in this forum this example on how to check if the smartphone is connected to internet. This is my code:
function check_online_status(){
if (window.navigator.onLine) {
subrc = 0;
} else {
alert('No internet!!');
subrc = 4;
}
return subrc;
}
I set my phone into flight mode and I get no error message.
2) DD-Field does not show the options
I read a database table and feed a DD-field with the records. When I display it in the test center (either as android or as iOS) it shows the option either in a popup window or a wheel. When I run it in my smartphone nothing happens. It looks like the field were inactive. Screenshot is attached. After many tries it opened once but that was all.
Now what is the possible reason for this ??
Attachments:
You must be
logged in to view attached files.