我正在当前项目中使用Angularjs处理syncfusion网格(第三方自定义控件)。
关于身高,网格有一个小问题。我已经做了一些设置网格高度的角度代码(我使用" e-scrollsettings-height"属性这样做)但是当网格为空时它会使网格空白你可以看到附加的屏幕截图有意义
有一件事是我不想在我的网格中使用分页。
我想也许最小高度有一些属性,但我找不到任何相关的属性。
答案 0 :(得分:2)
最后我得到了答案,所以我在这里张贴其他人
在视图中:
<div class="gridStyle" ng-init="getList()" ma-cmis-grid-directive id="cmisGrid" e-scrollsettings-height="{{maximumGridHeight}}" e-actioncomplete="actioncomplete"></div>
脚本文件中的:
$scope.maximumGridHeight = 330;
$scope.actioncomplete = function (args) {
if (!this.initialRender && args.requestType == "refresh") {
var height = Math.ceil(this.getRowHeight() * this.model.currentViewData.length);
this.option("model.scrollSettings.height", height > $scope.maximumGridHeight ? $scope.maximumGridHeight : height);
}
else if (args.requestType != "sorting" && this.model.selectionType == "single")
{
var height = Math.ceil(this.getRowHeight() * this.model.currentViewData.length);
this.option("model.scrollSettings.height", height > $scope.maximumGridHeight ? $scope.maximumGridHeight : height);
}
}