2015-03-03 98 views
0

我想在Kendo網格中放入一個簡單的選擇,但我沒有運氣。選擇不顯示。任何想法我需要做什麼?如何使Kendo下拉選擇Kendo grid內部始終可見

這裏是我的代碼:

JS

$(document).ready(function() { 
     $("table").kendoGrid({ 
      autoBind: true, 
      scrollable: false, 
      sortable: false, 
      selectable: false, 
      filterable: false 
     }); 
    }); 
$(document).ready(function() { 
    $('select').kendoDropDownList(); 

}); 

HTML

<table style="min-height:400px;"> 
    <thead> 
     <tr> 
      <th>ALL Vaults</th> 
      <th> 
      </th> 
     </tr> 
    </thead> 
    <tbody> 
     <tr> 
      <td>1</td> 
      <td> 
       <select> 
        <option>option 1</option> 
        <option>option 2</option> 

       </select> 
      </td> 
     </tr> 
     <tr> 
      <td>2</td> 
      <td> 
       <select> 
        <option>option 1</option> 
        <option>option 2</option> 

       </select> 
      </td> 
     </tr> 
     <tr> 
      <td>3</td> 
      <td> 
       <select> 
        <option>option 1</option> 
        <option>option 2</option> 

       </select> 
      </td> 
     </tr> 
    </tbody> 
</table> 

http://jsfiddle.net/rFDD6/458/

回答

0

你想要什麼你不能達到有了這個配置。見demo

function DropDownEditor(container, options) { 
    $('<select data-bind="value:' + options.field + '"><option>option 1</option><option>option 2</option></select>') 
     .appendTo(container) 
     .kendoDropDownList(); 
} 
+0

的問題是在這裏,因爲它沒有看到選擇,點擊,只有當:( – 2015-03-04 07:30:27

+0

任何正確的配置 – 2015-03-04 07:42:31

+0

@ play2web下拉不能總是可見的情況下,不支持HTTP://www.telerik。 com/forums/put-all-rows-into-edit-mode。我的建議是以下內容http://stackoverflow.com/questions/28619142/how-to-update-kendo-grid-row-from-window/28633914 #28633914 – 2015-03-04 08:26:31