Skip to main content

Posts

Showing posts with the label Set ng-grid row or cell height in AngularJs?

How to set ng-grid row or cell height in AngularJs?

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' ,       ...