0
각도 UI 그리드에서 그리드에 표시되는 행 수를 알 수있는 방법이 있습니까? 예를 들어 5,000 개의 행이 있고 필터링 한 다음 2,500 개의 행이 남아있는 경우 gridApi
을 통해이를 확인하는 방법이 있습니까?각도 UI 그리드 얼마나 많은 행이 표시됩니까?
각도 UI 그리드에서 그리드에 표시되는 행 수를 알 수있는 방법이 있습니까? 예를 들어 5,000 개의 행이 있고 필터링 한 다음 2,500 개의 행이 남아있는 경우 gridApi
을 통해이를 확인하는 방법이 있습니까?각도 UI 그리드 얼마나 많은 행이 표시됩니까?
시도한 내용의 예가 있습니까? 바닥 글 요소를 아직 통합하지 않았다면 시작하십시오.
http://ui-grid.info/docs/#/tutorial/105_footer
$scope.gridOptions = {
showGridFooter: true,
showColumnFooter: true,
enableFiltering: true,
columnDefs: [
{ field: 'name', width: '13%' },
{ name: 'registered', field: 'registered', width: '20%', cellFilter: 'date', footerCellFilter: 'date', aggregationType: uiGridConstants.aggregationTypes.max }
],
data: data,
onRegisterApi: function(gridApi) {
$scope.gridApi = gridApi;
}
};
$scope.toggleFooter = function() {
$scope.gridOptions.showGridFooter = !$scope.gridOptions.showGridFooter;
$scope.gridApi.core.notifyDataChange(uiGridConstants.dataChange.OPTIONS);
};
당신은 존재하는 데이터를 집계하는 각 열에 대해 바닥 글을 만들 수 있습니다.
당신이 한 것을 보여주십시오? –
방법, ui-grid-pagination이 있습니다. –