Page 3 of 5
The phone call button doesn't work.
Posted: Fri Dec 19, 2014 1:44 pm
by Paritosh K
Hi please help. i want to save my database array in phone local storage.so i dont need to connect to internet all the time.i have uploaded the csv data i just need the data once saved in phone can be viewed without internet.i am just a beginner please help me out.
The phone call button doesn't work.
Posted: Mon Dec 22, 2014 2:50 am
by Yurii Orishchuk
Hi Paritosh,
You can store needed information in local storage or SQL lite.
Here is tutorial that could help you to understand how it works:
http://devcenter.appery.io/tutorials/...
Regards.
The phone call button doesn't work.
Posted: Tue Jan 06, 2015 1:46 pm
by Paritosh K
I WANT ONE PAGE LANDSCAPE ONLY
The phone call button doesn't work.
Posted: Tue Jan 06, 2015 3:41 pm
by Ihor Didevych
The phone call button doesn't work.
Posted: Thu Aug 20, 2015 1:17 pm
by Deon
Hi
window.open('tel:' + Appery('Phone').text(), '_system');
Works fine on Android. Does not work on Apple Iphone 6
window.open('mailto:' + Appery('Email').text(), '_system'); works fine on both.
Can anyone shed some light, please.
Thx
The phone call button doesn't work.
Posted: Wed Aug 26, 2015 9:39 am
by Illya Stepanov
Hi Deon -
Let us know if the below JS code works for you:
pre
code
var number = Apperyio("Phone").text().replace(/[ \n\r]/gi, "");
window.open('tel:' + number, '_system');
/code
/pre
The phone call button doesn't work.
Posted: Fri Sep 18, 2015 2:50 am
by Deon
Hi Illya. It works, thank you. Can I presume that this is also the case with other window.open commands.
I see window.open('geo:0,0?q=' + Appery('Address').text(), '_system'); does not work either?
The phone call button doesn't work.
Posted: Fri Sep 18, 2015 6:01 am
by Illya Stepanov
So, it doesn't works for you for every label references in your app?
Could you please specify what Libraries version are you using in your app?
The phone call button doesn't work.
Posted: Wed Sep 23, 2015 1:05 pm
by Deon
Hi Illya
The code you gave me above works perfectly for the Phone but I see using it to open google maps with window.open('geo:0,0?q=' + Appery('Address').text(), '_system'); does not work. Do you have a solution to that?
The phone call button doesn't work.
Posted: Sun Sep 27, 2015 3:50 pm
by Illya Stepanov
Hi Deon - Could you please clarify on what platform you using this code? The string seems to be correct if you wrap value into variable and then use .replace method -- or is it just doesn't opens Google maps?