2013-01-17 72 views
1

我看了整個網絡上的這個「簡單」的問題沒有答案!
如何嵌入一個選擇輸入字段到像本例中,dgrid:
假設我們有此列:dgrid與選擇字段

editor({ 
        label: "name", 
        autoSave:true, 
        field: "f_name", 
        className: 'style4' 
      }, "text", "dblclick") 

回答

2

嘗試是這樣的:

"dgrid.editor({ 
        field: 'state', 
        editorArgs: {store: stateStore, style: 'width:120px;', maxHeight: -1} 
       }, dijit.form.Select)" 

這裏是例子:https://github.com/SitePen/dgrid/blob/master/test/GridFromHtml_Editors.html

+0

非常感謝,我在鏈接上的其他測試文件之一找到答案。 以爲我想知道爲什麼這個代碼很難在網上找到? 我很努力地找到答案,直到你幫助我。再次感謝 – Tarek

2

基於frederic的答案回答:

editor({ 
    label: "subject", 
    field: "subject", 
    editorArgs: { 
     style: "width:75px;", 
     options: [ 
      {value: "true", label: "true"}, 
      {value: "false", label: "false"} 
     ] 
    } 
}, Select, "dblclick")