2011-01-19 35 views
2

特定のセルに選択ボックスを表示しようとしています。チェックボックスはうまく表示されていますが、選択ボックスは表示されません。セル内のJqGrid選択ボックス

 
$('#list5').jqGrid({ 
    datatype: "local", 
    width: "100%", 
    height: "100%", 
    colNames:['Universe1','Connect String1', 'Report1', 'Object Type1','Path1','Owner1', '|', 'Universe', 'Select','Connect String', 'CheckBox', 'Report', 'Object Type','Path','Owner'], 
    colModel:[ 
    {name:'universe1', index:'universe1', width:70},{name:'connect1',index:'connect1', width:120}, 
     {name:'report1',index:'report1', width:90}, 
     {name:'objType1',index:'objType1', width:50, align:"right"}, 
     {name:'path1',index:'path1', width:50, align:"right"}, 
     {name:'owner1',index:'owner1', width:100, align:"right"}, 
     {name:'pipe',index:'pipe', width:10, align:"center"}, 
     {name:'universe', index:'universe', width:70}, 
     {name:'ship',index:'ship', width:90, editable: true, edittype:"select", formatoptions: {disabled : false}, editoptions:{value:"FE:FedEx;IN:InTime;TN:TNT;AR:ARAMEX"}}, 
     {name:'connect',index:'connect', width:120}, 
     { name: 'airPost', width: 40, index: 'airPost', formatter: 'checkbox', align: 'center', //Checkbox 
         editoptions: { value: "1:0" }, stype: 'select', editable:true, searchoptions: { value: "1:Yes;0:No" }, formatoptions: {disabled : false} }, 
     {name:'report',index:'report', width:90}, 
     {name:'objType',index:'objType', width:50, align:"right"}, 
     {name:'path',index:'path', width:50, align:"right"}, 
     {name:'owner',index:'owner', width:100, align:"right"} 

     ], 

    caption: "Grid", 
    autowidth: true, 
    viewrecords: true, 
    footerrow: true, 
    userDataOnFooter: true, 
    data: mydata 
    }); 

答えて

2

おそらく誤解されています。セルが編集モードになっている場合にのみ、セル内の選択ボックスが表示されます。たとえば、あなたの地元のjqGridでcell editingサポートを含めることができますが、グリッドの定義

cellEdit: true, 
cellsubmit: 'clientArray' 

に2つの追加パラメータを含める場合は、代わりinline editingを使用することができます。

mydataのデータがどのように見えるのかわかりません。 'ship'列の定義にさらにformatter:'select'を追加する必要があります。私はそれがcellEditを持っていないとの問題、cellsubmit :,およびediturlた作業しまった

+0

おかげで、私はSRA1 @同じ問題 – Xravn

+0

に直面している:あなたは歓迎されています! – Oleg

0

ありがとう:グリッドに追加

関連する問題