2012-02-27 3 views
0

jqgrid hideCol 메서드가 바닥 글에 반영되지 않은 것 같습니다. 즉, hideCol 메서드를 사용하여 B를 숨기면 A와 B 열이 있다고 말하면 바닥 글이 B가 숨겨지지 않는 잘못된 바닥 글을 가져옵니다. 여기에 뭔가가 누락되었거나 지원되지 않습니까? 바닥 글과 관련하여 hideCol에 대한 언급을 찾을 수 없습니다.jqgrid hideCol 푸터 열을 숨기지 않습니다.

작동하지 않는 샘플 코드를 제공하려면 JqGrid Samples 샘플을 가져 와서 이름 열을 숨 겼습니다. 여기에서 바닥 글은 해당 열을 숨기지 않았습니다.

var mydata = [ 
    { id: "1", invdate: "2010-05-24", name: "test", note: "note", tax: "10.00", total: "2111.00" }, 
    { id: "2", invdate: "2010-05-25", name: "test1", note: "note2", tax: "20.00", total: "320.00" }, 
    { id: "3", invdate: "2007-09-01", name: "test1", note: "note3", tax: "30.00", total: "430.00" }, 
    { id: "4", invdate: "2007-10-04", name: "test", note: "note", tax: "10.00", total: "210.00" }, 
    { id: "5", invdate: "2007-10-05", name: "test2", note: "note2", tax: "20.00", total: "320.00" }, 
    { id: "6", invdate: "2007-09-06", name: "test3", note: "note3", tax: "30.00", total: "430.00" }, 
    { id: "7", invdate: "2007-10-04", name: "test", note: "note", tax: "10.00", total: "210.00" }, 
    { id: "8", invdate: "2007-10-03", name: "test2", note: "note2", amount: "300.00", tax: "21.00", total: "320.00" }, 
    { id: "9", invdate: "2007-09-01", name: "test3", note: "note3", amount: "400.00", tax: "30.00", total: "430.00" }, 
    { id: "11", invdate: "2007-10-01", name: "test", note: "note", amount: "200.00", tax: "10.00", total: "210.00" }, 
    { id: "12", invdate: "2007-10-02", name: "test2", note: "note2", amount: "300.00", tax: "20.00", total: "320.00" }, 
    { id: "13", invdate: "2007-09-01", name: "test3", note: "note3", amount: "400.00", tax: "30.00", total: "430.00" }, 
    { id: "14", invdate: "2007-10-04", name: "test", note: "note", amount: "200.00", tax: "10.00", total: "210.00" }, 
    { id: "15", invdate: "2007-10-05", name: "test2", note: "note2", amount: "300.00", tax: "20.00", total: "320.00" }, 
    { id: "16", invdate: "2007-09-06", name: "test3", note: "note3", amount: "400.00", tax: "30.00", total: "430.00" }, 
    { id: "17", invdate: "2007-10-04", name: "test", note: "note", amount: "200.00", tax: "10.00", total: "210.00" }, 
    { id: "18", invdate: "2007-10-03", name: "test2", note: "note2", amount: "300.00", tax: "20.00", total: "320.00" }, 
    { id: "19", invdate: "2007-09-01", name: "test3", note: "note3", amount: "400.00", tax: "30.00", total: "430.00" }, 
    { id: "21", invdate: "2007-10-01", name: "test", note: "note", amount: "200.00", tax: "10.00", total: "210.00" }, 
    { id: "22", invdate: "2007-10-02", name: "test2", note: "note2", amount: "300.00", tax: "20.00", total: "320.00" }, 
    { id: "23", invdate: "2007-09-01", name: "test3", note: "note3", amount: "400.00", tax: "30.00", total: "430.00" }, 
    { id: "24", invdate: "2007-10-04", name: "test", note: "note", amount: "200.00", tax: "10.00", total: "210.00" }, 
    { id: "25", invdate: "2007-10-05", name: "test2", note: "note2", amount: "300.00", tax: "20.00", total: "320.00" }, 
    { id: "26", invdate: "2007-09-06", name: "test3", note: "note3", amount: "400.00", tax: "30.00", total: "430.00" }, 
    { id: "27", invdate: "2007-10-04", name: "test", note: "note", amount: "200.00", tax: "10.00", total: "210.00" }, 
    { id: "28", invdate: "2007-10-03", name: "test2", note: "note2", amount: "300.00", tax: "20.00", total: "320.00" }, 
    { id: "29", invdate: "2007-09-01", name: "test3", note: "note3", amount: "400.00", tax: "30.00", total: "430.00" } 
]; 
function drawGrid() { 
    jQuery("#list482").jqGrid({ 
     onSortCol: function (index, columnIndex, sortOrder) { 
      alert(index + ' ' + columnIndex + ' ' + sortOrder); 
      return 'stop'; 
     }, 
     data: mydata, 
     datatype: "local", 
     height: 'auto', 
     rowNum: 30, 
     sortable: true, 
     rowList: [10, 20, 30], 
     colNames: ['Inv No', 'Date', 'Client', 'Amount', 'Tax', 'Total', 'Notes'], 
     colModel: [ 
    { name: 'id', index: 'id', width: 60, sorttype: "int" }, 
    { name: 'invdate', index: 'invdate', width: 90, sorttype: "date", formatter: "date" }, 
    { name: 'name', width: 100, editable: true }, 
    { name: 'amount', index: 'amount', width: 80, align: "right", sorttype: "float", formatter: "number", editable: true }, 
    { name: 'tax', index: 'tax', width: 80, align: "right", sorttype: "float", editable: true }, 
    { name: 'total', index: 'total', width: 80, align: "right", sorttype: "float" }, 
    { name: 'note', index: 'note', width: 150, sortable: false } 
], 
     viewrecords: true, 
     grouping: false, 
     groupingView: { 
      groupField: ['name'], 
      groupColumnShow: [true], 
      groupText: ['<b>{0} - {1} Item(s)</b>'] 
     }, 
     footerrow: true, 
     caption: "Hide Grouping Column", 
     onCellSelect: function() { alert('focus'); } 
    }); 
    var grid = jQuery("#list482"); 
    var col = 0; 
    for (var row = 0; row < mydata.length; row++) { 
     grid.addRowData(row + 1, { id: '' }); 
     grid.setCell(row + 1, col, mydata[row].id); 
     grid.setCell(row + 1, col + 1, mydata[row].invdate); 
     grid.setCell(row + 1, col + 2, mydata[row].name); 
     grid.setCell(row + 1, col + 3, mydata[row].amount); 
     grid.setCell(row + 1, col + 4, mydata[row].tax); 
     grid.setCell(row + 1, col + 5, mydata[row].total); 
     grid.setCell(row + 1, col + 6, mydata[row].note); 
    } 
    grid.footerData('set', { amount: 2000, tax: 5000, total: 90000 }); 
    grid.hideCol(['name']); 
    grid.trigger("reloadGrid"); 
} 
$(document).ready(function() { 
    drawGrid(); 
}); 
+1

'hideCol'은 바닥 글 행의 해당 열을 숨겨야합니다 ([line] (https://github.com/tonytomov/jqGrid/blob/v4.3.1/js/grid.base.js#L2973 참조).)의 코드). 작동하지 않는 예가 있으면 해당 데모를 게시해야합니다. – Oleg

+0

이것을 알려 주셔서 감사합니다. 나는 물건을 망쳐 놓고있는 곳으로 가서 코드를 조사 할 것이다. – Sarath

+0

당신은 오신 것을 환영합니다! 어떤 경우 든 버그를 발견했다고 생각되면 문제를 재현하는 데 사용할 수있는 전체 코드를 게시해야합니다. – Oleg

답변

0

jqgrid를 4.1에서 4.3.1로 업그레이드하면이 문제가 해결 된 것 같습니다. 시간 내 주셔서 감사합니다.

관련 문제