2016-04-07 29 views
-1

剣道グリッド用にユーザ定義のポップアップエディタを使用できますか?はいの場合、そのエディタを追加する方法は?私は、グリッド上の編集ボタンをクリックしたときにポップアップするエディタを下回るたいカスタムポップアップエディタ - 剣道UIグリッド

<div class="modal inmodal fade" id="myModal5" tabindex="-1" role="dialog" aria-hidden="true"> 
     <div class="modal-dialog modal-lg"> 
      <div class="modal-content"> 
       <div class="modal-header" style="padding-top: 10px;"> 
       </div> 
       <div class="modal-body"> 


       </div> 
       <div class="modal-footer"> 
        <button type="button" class="btn btn-white" data-dismiss="modal">Close</button> 
        <button type="button" class="btn btn-primary" ng-click="SaveZone()">Save</button> 
       </div> 
      </div> 
     </div> 
    </div> 

答えて

0

あなたはこのよう剣道テンプレートを指定する必要があります。

<script id="custom_editor" type="text/x-kendo-template"> 
    <div> 
     <label> some label </label> 
    </div> 
    <div> 
     <input type="text" name="Name" /> 
    </div> 
</script> 

注意を、その名前のパラメータが必要とされていますモデル内のフィールドへの入力を正しくマップします。

次に、あなたのグリッドにこの

...  
editable: { 
    mode: "popup", 
    template: kendo.template($("#custom_editor").html()) 
}, 
... 
よう editableをspecifiy