2017-07-21 3 views
0

こんにちは、私のアプリケーションでは私のアプリケーションで私はフッタから開いて、入力値のためのフォーカスフィールドのキーボードプラグインを統合します。私は、プラグインionicアプリケーションのオープンキーボードでの問題

https://gist.github.com/Manduro/bc121fd39f21558df2a952b39e907754

そして、私のhtmlページに私は上記のコードを実行すると、私はのようなエラーが発生します

<ion-content #content> 
<ion-item no-padding> 
<ion-label floating>Name (*) </ion-label> 
<ion-input #txtGroupName type="text" [(ngModel)]="client.name"></ion-input> 

<ion-footer no-padding no-margin class="custom-footer" [keyboardAttach]="content"> 
     <button ion-button full no-padding no-margin (click)="onClickAddClientContact()">CREATE</button> 
    </ion-footer> 

以下のようにそれを呼び出すためのリンクを使用するには、以下のエラー:未知(約束):エラー:キーボードのプロバイダがありません!

どのように私はこれを解決することができますか?

答えて

0

これは私のアプリケーションで、フッターなしで使用している方法です。問題なし。

<form class="loginForm"> 
       <div class="list"> 
        <label class="item item-input"> 
        <input type="text" class="input1" placeholder="Username" id='username'> 
        </label> 
        <label class="item item-input"> 
         <input type="password" class="input2" placeholder="Password" id="pass"> 
        </label> 
       </div> 
    <button class="button" id="btn-submit" ng-click="submit()">Sign In</button> 
      </form> 
+0

ラジピア:私はその時のキーボードで私の画面で入力すると、問題は、そのフィールドに重複ですので、私はそれを入力するかを見ることができない私は、キーボード –

+0

使用の単純なものから入力するときに、私はそれまでに必要入力要素の代わりにと –

+0

を参照してください。raj peer - 動作していません –

関連する問題