- 724 Posts
- 3 Reply Likes
Posted 4 years ago
Petra V., Champion
- 7794 Posts
- 1391 Reply Likes
JesseMonroy650 (Volunteer), Champion
- 3325 Posts
- 122 Reply Likes
Potential duplicate:
http://community.phonegap.com/nitobi/topics/index-html-couldnt-found-for-phonedialer-plugin
http://community.phonegap.com/nitobi/topics/index-html-couldnt-found-for-phonedialer-plugin
- 724 Posts
- 3 Reply Likes
@Jesse Sir, Why are you behaving in such a this way? Sir You are champion of Phonegap Community You should help us, we are your junior sir, we are students and want to learn something but many time you behaved wrong. I am not making mark on ur talent but Sir you should help us.
If you dont want to answer so please keep far from our post.
Thank You
If you dont want to answer so please keep far from our post.
Thank You
JesseMonroy650 (Volunteer), Champion
- 3325 Posts
- 122 Reply Likes
@saba
if you are a student, as in - you are going to a school, then you are in the wrong place. This forum is for professionals that need answers on questions. We (the denizens, as Petra says) take our personal time AND do not charge people for this. This means we do not appreciate our time being wasted on a subject.
To be clear
- I am not picking on you. Others have had similar posts in the past.
- you are free to ask for more opinions
- you are free to say the answers I give you, do not suit you
- you are free to ask for more solutions or answers
- you are free to work on projects we disagree with
- you are free to ask related questions, and link to previous answers
However, I value my time. Other "denizens" may feel the same. Other "denizens" may or may not agree with my responses. Certainly, Petra frequently says I need to listen better and more often - i agree with Petra sometimes.
Best of Luck
Jesse
if you are a student, as in - you are going to a school, then you are in the wrong place. This forum is for professionals that need answers on questions. We (the denizens, as Petra says) take our personal time AND do not charge people for this. This means we do not appreciate our time being wasted on a subject.
To be clear
- I am not picking on you. Others have had similar posts in the past.
- you are free to ask for more opinions
- you are free to say the answers I give you, do not suit you
- you are free to ask for more solutions or answers
- you are free to work on projects we disagree with
- you are free to ask related questions, and link to previous answers
However, I value my time. Other "denizens" may feel the same. Other "denizens" may or may not agree with my responses. Certainly, Petra frequently says I need to listen better and more often - i agree with Petra sometimes.
Best of Luck
Jesse
- 724 Posts
- 3 Reply Likes
Respected Sir, i am agreed with you..... it's correct that i am a student at college level, but i have learned many things without college..... Oneday i will solve people's programming problems like you if God will. I posted this problem more than one time because i cudn't found the answer yet. I want that how before you helped me, someone can also help me on this topic like you. I do not suppose that always you answer me after your suggestion i studied much phonegap documents but still i have problem. I just want to complete this project as soon as possible thats y i am posting in many ways to get my answer. Thanks for wishing and sorry for disrespect. Your Student @saba
-and the link u posted in comment,it was also my post.
-and the link u posted in comment,it was also my post.
JesseMonroy650 (Volunteer), Champion
- 3325 Posts
- 122 Reply Likes
@Saba
One reason we do NOT encourage "students" on Phonegap is because we do not have time for "holding hands". As such, I review videos, and written tutorials, and I write tutorials and recommend tutorials, and more.
In short, except for written you actual app and submitting it for you - I will do everything else. I think others feel the same - but they can speak for themself.
Lastly, if in the future - after you are done with school, you are very welcome back. And at this time, I do not discourage you from posting questions. Just consider - I and others do NOT get paid to do this.
All the Best with Respect,
Jesse
One reason we do NOT encourage "students" on Phonegap is because we do not have time for "holding hands". As such, I review videos, and written tutorials, and I write tutorials and recommend tutorials, and more.
In short, except for written you actual app and submitting it for you - I will do everything else. I think others feel the same - but they can speak for themself.
Lastly, if in the future - after you are done with school, you are very welcome back. And at this time, I do not discourage you from posting questions. Just consider - I and others do NOT get paid to do this.
All the Best with Respect,
Jesse
- 724 Posts
- 3 Reply Likes
:) Ok Sir as u say , Thanks for all help :) May Allah give you reward for this, aameen
- 724 Posts
- 3 Reply Likes
Ext.setup({
onReady: function(){
var rootPanel = new Ext.form.FormPanel({
fullscreen: true,
items: [
{
xtype:'button',
text:'Call Now',
scope:this,
handler: callSomeone
}
],
dockedItems:[
{
xtype:'toolbar',
dock:'top',
title:'Phone Dialer Example'
}
]
}
);
function callSomeone(){
var msg = Ext.Msg.confirm('Please Confirm','Are you sure you want to make a phone call?',
function(r){
if (r == 'yes'){
if (Ext.is.Android){
document.location.href = 'tel:+91-7895090525';
} else { // we assume the device is running iOS
window.plugins.phoneDialer.dial('+91-7895090525');
}
}
}
);
msg.doComponentLayout();
}
}
});// JavaScript Document
can you tell me that which function should i call in HTML file?
onReady: function(){
var rootPanel = new Ext.form.FormPanel({
fullscreen: true,
items: [
{
xtype:'button',
text:'Call Now',
scope:this,
handler: callSomeone
}
],
dockedItems:[
{
xtype:'toolbar',
dock:'top',
title:'Phone Dialer Example'
}
]
}
);
function callSomeone(){
var msg = Ext.Msg.confirm('Please Confirm','Are you sure you want to make a phone call?',
function(r){
if (r == 'yes'){
if (Ext.is.Android){
document.location.href = 'tel:+91-7895090525';
} else { // we assume the device is running iOS
window.plugins.phoneDialer.dial('+91-7895090525');
}
}
}
);
msg.doComponentLayout();
}
}
});// JavaScript Document
can you tell me that which function should i call in HTML file?
Petra V., Champion
- 7794 Posts
- 1391 Reply Likes
The code seems correct. You may not have whitelisted the "tel:" semi-protocol properly, though.
Could you please post your config.xml?
Could you please post your config.xml?
- 724 Posts
- 3 Reply Likes
Yes sure following file is config.xml
<!-- versionCode is optional and Android only -->
AmroClean
This app let you Clean your City within no time, Keep your City Clean and Green, Regards: Nagar Palika Parishad
Saba Rais
<!-- versionCode is optional and Android only -->
AmroClean
This app let you Clean your City within no time, Keep your City Clean and Green, Regards: Nagar Palika Parishad
Saba Rais
- 724 Posts
- 3 Reply Likes
<!-- versionCode is optional and Android only -->
AmroClean
This app let you Clean your City within no time, Keep your City Clean and Green, Regards: Nagar Palika Parishad
Saba Rais
AmroClean
This app let you Clean your City within no time, Keep your City Clean and Green, Regards: Nagar Palika Parishad
Saba Rais
Petra V., Champion
- 7794 Posts
- 1391 Reply Likes
Replace your plugins by the latest plugin versions from npm. Be aware that these are named differently, for instane cordova-plugin-device.
Then add whitelisting. You need cordova-plugin-whitelist. Read and apply its documentation.
Finally, remove all platform elements which are unsupported. PGB only generates for android, ios and winphone.
Then add whitelisting. You need cordova-plugin-whitelist. Read and apply its documentation.
Finally, remove all platform elements which are unsupported. PGB only generates for android, ios and winphone.
- 724 Posts
- 3 Reply Likes
- 724 Posts
- 3 Reply Likes
@Petra V., should i create a separated plugin.xml file?
Petra V., Champion
- 7794 Posts
- 1391 Reply Likes
No, when using PGB, you don't have a plugin.xml
- 724 Posts
- 3 Reply Likes
Thanks to remove a big confusion :) thanks alot.
JesseMonroy650 (Volunteer), Champion
- 3325 Posts
- 122 Reply Likes
Related Categories
-
PhoneGap Build
- 15111 Conversations
- 275 Followers






Saba Rais