SenchaTouchで簡単なコールボタンを作成するにはどうすればよいですか
私のボタンは次のように宣言されています:
var callButton = {
xtype: "button",
text: 'Call College',
ui: 'custom-btn-confirm',
maxWidth: '360px',
padding: '0 80 0 80',
centered: true,
flex: 1,
scope: this,
style: 'color: #ffffff',
handler: function() {
console.log("Make a Phone Call");
//document.location.href = "tel:00112233"; // This does not work
}
関連している
SenchaTouchのボタンから「tel」リンクを起動します
phoneGapとSenchaTouch2を使用してAndroidでデバイスに電話をかけるにはどうすればよいですか?
http://rickluna.com/wp/2012/02/making-a-phone-call-from-within-phonegap-in-android-and-ios/