We can achieve using rowHeight ="200px" in the given below "mobileGridView " options. The example code-sample as given below.
01
02
03
04
05
06
07
08
09
10
11
12
13
| $scope.mobiles = resp.data; $scope.Columns = [{field: 'C50Percent' , displayName: 'Alerts Percent' , cellTemplate: multiplePercntFieldsInSingleCell }, { field: 'LastUpdateBy' , displayName: 'LastUpdateBy' }, { field: 'LastUpdateDate' , displayName: 'Last Update' , cellFilter: "date:'yyyy-MM-dd'" }]; $scope.mobileGridView = { data: 'mobiles' , rowHeight: 240, columnDefs: 'Columns' }; |
$scope.mobiles = resp.data; $scope.Columns = [{field: 'C50Percent', displayName: 'Alerts Percent', cellTemplate: multiplePercntFieldsInSingleCell }, { field: 'LastUpdateBy', displayName: 'LastUpdateBy' }, { field: 'LastUpdateDate', displayName: 'Last Update', cellFilter: "date:'yyyy-MM-dd'"}]; $scope.mobileGridView = { data: 'mobiles', rowHeight: 240, columnDefs: 'Columns' };