0

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」リンクを起動します

http://www.sencha.com/forum/showthread.php?127497-Firing-a-tel-link-from-a-button/page2&highlight=location.href

phoneGapとSenchaTouch2を使用してAndroidでデバイスに電話をかけるにはどうすればよいですか?

http://rickluna.com/wp/2012/02/making-a-phone-call-from-within-phonegap-in-android-and-ios/

4

1 に答える 1

1

ボタンを次のように置き換えることができます

{html : "<a href='tel:{phone}' class='x-button call-button' target='_blank'>Call College</a>"}
于 2012-09-14T11:13:05.617 に答える