2017-10-22 6 views

답변

0

나는 이것이 당신이 찾고있는 해답이라고 생각합니다.

function resizeDetailGrid(gridElement) { 
    // resize detail column widths to match master column headings 
    gridElement.find('.k-detail-cell tbody tr td').each(function (index) { 
     var headerCell, detailCell, headerCellSelector, detailCellSelector; 
     headerCellSelector = kendo.format('.k-master-row td:nth-child({0})', index + 2); 
     detailCellSelector = kendo.format('.k-detail-cell tbody tr td:nth-child({0})', index + 1); 
     headerCell = gridElement.find(headerCellSelector).first(); 
     detailCell = gridElement.find(detailCellSelector); 
     detailCell.width(headerCell.width()); 
    }); 
} 

그리고 당신은 너무 많은 열이있는 경우는 그리드에 가로 스크롤 막대를 추가 할 수 그리드

gridDetailInit: function() { 
     resizeDetailGrid($('#grid')); 
    } 

를 초기화. 이 정보가 도움이

희망.

+0

[답변 만 매우 손쉽게 볼 수 있습니다] (https://meta.stackexchange.com/a/8259/171858). –

0

계층 구조 그리드의 너비를 더 작게 설정하려면 계층 구조 그리드 구성 요소의 너비를 명시 적으로 설정할 수 있습니다. 이 작업은 HtmlAttributes 속성을 통해 수행 할 수 있습니다.

.HtmlAttributes(new {style="width: 500px;" })