Angular material Sticky column more than 1 column - angular7

im curently using angular ver 7 with angular cli and also angular material the lastest version
im get to the point when using the angular table with sticky column position
<ng-container matColumnDef="name" sticky>
<th mat-header-cell *matHeaderCellDef> Name </th>
<td mat-cell *matCellDef="let element"> {{element.name}} </td>
</ng-container>
<ng-container matColumnDef="address" sticky>
<th mat-header-cell *matHeaderCellDef> Address</th>
<td mat-cell *matCellDef="let element"> {{element.address}} </td>
</ng-container>
but when im serve it in the browser the sticky column all mess up,
there is some space beetween them so when im scroll to the right, the animation seems so off
it is the right way to use 2 sticky?

Solved but in a clumsy way. The Angular 7 material table columns require percentage width positioning to be correctly aligned. Anyways I ended up giving fixed width to columns which are sticky from .scss file *e.g. * in your case
.mat-col-name
{
left: 0px;
width: 100px
}
.mat-col-address
{
left: 100px;
width: 100px;
}
Notice that left has to be positioned exactly. This along with sticky tag on these two columns in the HTML template made it work properly for me.
EDIT:
In newest version of Angular you need to use .mat-column.
.mat-column-name
{
left: 0px;
width: 100px
}
.mat-column-address
{
left: 100px;
width: 100px;
}

Was having the same issue. The sticky columns are collapsing and there's weird spacing between columns caused by the sticky attribute. This means when you scroll across the table, there's an accordion effect on sticky column sizes and the content on the lower/non sticky scrolling column is showing up under the top/sticky columns.
Solution:
Set min-width and max-width on each sticky column to be the same value - I used px.

I work around that by overriding sticky css and use sticky as attribute too. It works for me in my case with its three sticky headers
<ng-container matColumnDef="name" sticky class="mat-col-name">
<th mat-header-cell *matHeaderCellDef class="mat-col-name"> Name </th>
<td mat-cell *matCellDef="let element" class="mat-col-name"> {{element.name}} </td>
</ng-container>
<ng-container matColumnDef="address" sticky class="mat-col-address">
<th mat-header-cell *matHeaderCellDef class="mat-col-address"> Address</th>
<td mat-cell *matCellDef="let element" class="mat-col-address"> {{element.address}} </td>
</ng-container>
css:
.mat-col-name {
width: 100px;
top: 56px;
z-index: 101;
left: 0px;
position: sticky;
}
.mat-col-address {
left: 100px !important;
width: 100px;
top: 56px;
z-index: 101;
position: sticky;
}

When using sticky for 3 columns, in the Angular material table.
I was finding a distorted view for sticky columns with added white space within them, this was because of the inbuilt CSS property of the sticky attribute. In my local, I didn't give any left or width CSS in code, but ongoing to DOM it was taking extra left space.
So I solved this using the below CSS by overriding the CSS of the sticky attribute.
HTML:
<ng-container matColumnDef="level" class="mat-col-levelDefault " sticky>
<th mat-header-cell *matHeaderCellDef> Level </th>
<td mat-cell *matCellDef="let element"> {{element.level}} </td>
</ng-container>
CSS:
.mat-col-levelDefault {
left: 200px !important;
width: 100px;
top: 56px;
z-index: 101;
position: sticky;
}

Instead of just writing sticky, prefer writing [sticky]="true" at both positions, that should probably do. Rest the angular material will auto adjust.
Code Below:-
<ng-container matColumnDef="name" [sticky]="true">
<th mat-header-cell *matHeaderCellDef> Name </th>
<td mat-cell *matCellDef="let element"> {{element.name}} </td>
</ng-container>
<ng-container matColumnDef="address" [sticky]="true">
<th mat-header-cell *matHeaderCellDef> Address</th>
<td mat-cell *matCellDef="let element"> {{element.address}} </td>
</ng-container>

Related

how to bold the names of the columns of an angular material table

I Have this definition
<ng-container matColumnDef="id">
<th mat-header-cell *matHeaderCellDef mat-sort-header class="negrita">Código</th>
<td mat-cell *matCellDef="let element">{{element.id}}</td>
</ng-container>
And this style
.negrita {
font-weight: bold;
}
But I see this without any bold style
Any idea, please?
Thanks

Can you add a mat tool tip to the header of a mat table column?

I want to be able to add a tooltip that displays when hovering over the header of a column in a mat-table.
Is there a way to do this, because it does not display when I add the mat tooltip indicator.
<table mat-table [dataSource]="marketDataSource" matSort multiTemplateDataRows class="w-100">
<!-- Status Status -->
<ng-container matColumnDef="status">
<th mat-header-cell *matHeaderCellDef mat-sort-header matTooltip="Info about the action">
Status
</th>
<td mat-cell *matCellDef="let element">
<span>
<mat-slide-toggle color="primary"></mat-slide-toggle>
</span>
</td>
</ng-container>
<tr mat-header-row *matHeaderRowDef="marketDisplayedColumns; sticky: true"></tr>
<tr mat-row *matRowDef="let element; columns: marketDisplayedColumns;">
</table>
import MatTooltip module on your component.ts
import { MatTooltipModule } from '#angular/material/tooltip';

Angular Material Row when looping through data

My Data Source is like below
[{"isGroup":true,"groupName":"MV Reddy","items":[{"id":1,"name":"MV Reddy","verticalid":5,"vertical":"Colocation - Large > 20 Racks","target":"150","sap":"80","colo":"20","others":"50","quarter":1,"year":2019},{"id":10,"name":"MV Reddy","verticalid":6,"vertical":"Govt","target":"150","sap":"80","colo":"20","others":"50","quarter":1,"year":2020}]},{"isGroup":true,"groupName":"Neeraj Jha","items":[{"id":2,"name":"Neeraj Jha","verticalid":4,"vertical":"Alliances","target":"70","sap":"20","colo":"30","others":"20","quarter":2,"year":2019},{"id":5,"name":"Neeraj Jha","verticalid":4,"vertical":"Alliances","target":"150","sap":"80","colo":"20","others":"50","quarter":1,"year":2019}]},{"isGroup":false,"groupName":"Suresh Rathod","items":[{"id":3,"name":"Suresh Rathod","verticalid":3,"vertical":"C4C India (Public Cloud)","target":"100","sap":"20","colo":"30","others":"50","quarter":1,"year":2019}]},{"isGroup":false,"groupName":"Arun Dubey","items":[{"id":4,"name":"Arun Dubey","verticalid":6,"vertical":"Govt","target":"150","sap":"80","colo":"20","others":"50","quarter":4,"year":2019}]},{"isGroup":true,"groupName":"Atin Singh","items":[{"id":6,"name":"Atin Singh","verticalid":5,"vertical":"Colocation - Large > 20 Racks","target":"150","sap":"80","colo":"20","others":"50","quarter":1,"year":2020},{"id":7,"name":"Atin Singh","verticalid":2,"vertical":"IAAS and Rest of Ctrls Services","target":"150","sap":"80","colo":"20","others":"50","quarter":1,"year":2020},{"id":8,"name":"Atin Singh","verticalid":3,"vertical":"C4C India (Public Cloud)","target":"150","sap":"80","colo":"20","others":"50","quarter":1,"year":2020},{"id":9,"name":"Atin Singh","verticalid":6,"vertical":"Govt","target":"150","sap":"80","colo":"20","others":"50","quarter":1,"year":2020}]}]
and I wrote/printing my Table like this:
<table class="mat-elevation-z8 " mat-table matSort [dataSource]='targetData' (matSortChange)="sortData($event)">
<ng-container matColumnDef="Employee">
<th mat-header-cell *matHeaderCellDef mat-sort-header> Employee </th>
<td mat-cell *matCellDef="let element"> {{element.items[0].name}}
</td>
</ng-container>
<ng-container matColumnDef="groupData">
<ng-container *matCellDef="let group">
<ng-container *ngFor="let groupCol of group.items;index as i;">
<ng-container *ngIf="i==0 else newRow;">
<td mat-cell rowspan="group.items.length">
{{group.groupName}}
</td>
<td mat-cell>
{{groupCol.vertical}}
</td>
<td mat-cell>
{{groupCol.target}}
</td>
<td mat-cell>
{{groupCol.sap}}
</td>
<td mat-cell>
{{groupCol.colo}}
</td>
<td mat-cell>
{{groupCol.others}}
</td>
</ng-container>
<ng-template #newRow>
<tr mat-row>
<td mat-cell>
{{groupCol.vertical}}
</td>
<td mat-cell>
{{groupCol.target}}
</td>
<td mat-cell>
{{groupCol.sap}}
</td>
<td mat-cell>
{{groupCol.colo}}
</td>
<td mat-cell>
{{groupCol.others}}
</td>
</tr>
</ng-template>
</ng-container>
</ng-container>
</ng-container>
<ng-container matColumnDef="Vertical">
<th mat-header-cell *matHeaderCellDef>Vertical</th>
<td mat-cell *matCellDef="let element"> {{element.items[0].vertical}} </td>
</ng-container>
<ng-container matColumnDef="Target">
<th mat-header-cell *matHeaderCellDef>Target</th>
<td mat-cell *matCellDef="let element"> {{element.items[0].target}} </td>
</ng-container>
<ng-container matColumnDef="SAP">
<th mat-header-cell *matHeaderCellDef>SAP</th>
<td mat-cell *matCellDef="let element">{{element.items[0].sap}}</td>
</ng-container>
<ng-container matColumnDef="COLO">
<th mat-header-cell *matHeaderCellDef>COLO</th>
<td mat-cell *matCellDef="let element">{{element.items[0].colo}}</td>
</ng-container>
<ng-container matColumnDef="Others">
<th mat-header-cell *matHeaderCellDef>Others</th>
<td mat-cell *matCellDef="let element">{{element.items[0].others}}</td>
</ng-container>
<ng-container matColumnDef="Action">
<th mat-header-cell *matHeaderCellDef mat-sort-header> Action </th>
<td mat-cell *matCellDef="let element">
<div class="tableActions ">
<button class="view mat-button" (click)='edit(element.items[0])'>
<i class="material-icons">
create
</i>
</button>
</div>
</td>
</ng-container>
<tr mat-header-row *matHeaderRowDef="TargetTable;"></tr>
<tr mat-row *matRowDef="let row; columns: TargetTable;"></tr>
<tr mat-row *matRowDef="let row; columns: ['groupData']; when: isAGroup"></tr>
</table>
I am unable to print another row inside a table while looping through my data
Final result should be like below.
Your approach goes in the right direction as you're using the rowspan attribute. The template however is unnecessary complex and can be simplified if you pre-process your data.
I solved a similar problem in the open source project Koia using a RowSpanComputer class. Within summary-table.component.html, the computed row spans are then used to define the rowspan attribute of the td element.
[attr.rowspan]="rowSpans[iCol][iRow].span"
The RowSpanComputer class computes the rowspan for each cell out of the specified table data (array of rows). It basically loops over the rows and increments the rowspan for cells as long as their value remains unchanged and left located cells were also spanned. As soon as the value changes, the corresponding rowspan is reset to zero.
Please have a look at the following StackBlitz that uses the data you provided. This must obviously further be refined in order to obtain the result you expect.
UPDATE
If you want to have rowspan applied for cells even if left located cells were not spanned, simply remove the following line from the RowSpanComputer class.
spanColumnContexts.slice(iCol + 1).forEach(c => c.spannedRow = {});
I did this in this StackBlitz where a renamed RowSpanComputer to GroupingRowSpanComputer in order to avoid confusion.
My Table:
<table mat-table matSort [dataSource]="targetData" class="mat-elevation-z8">
<ng-container matColumnDef="Employee">
<th mat-header-cell *matHeaderCellDef mat-sort-header> Employee </th>
<td mat-cell *matCellDef="let element" [attr.rowspan]="rowSpanLength(element)"
[style.display]="rowSpanLength(element)>0 ? '' : 'none'">
{{element.name}}
</td>
</ng-container>
<ng-container matColumnDef="Vertical">
<th mat-header-cell *matHeaderCellDef mat-sort-header> Vertical </th>
<td mat-cell *matCellDef="let element"> {{element.vertical}}
</td>
</ng-container>
<ng-container matColumnDef="Target">
<th mat-header-cell *matHeaderCellDef mat-sort-header> Target </th>
<td mat-cell *matCellDef="let element"> {{element.target}}
</td>
</ng-container>
<ng-container matColumnDef="SAP">
<th mat-header-cell *matHeaderCellDef mat-sort-header> SAP </th>
<td mat-cell *matCellDef="let element"> {{element.sap}}
</td>
</ng-container>
<ng-container matColumnDef="COLO">
<th mat-header-cell *matHeaderCellDef mat-sort-header> COLO </th>
<td mat-cell *matCellDef="let element"> {{element.colo}}
</td>
</ng-container>
<ng-container matColumnDef="Others">
<th mat-header-cell *matHeaderCellDef mat-sort-header>Others</th>
<td mat-cell *matCellDef="let element"> {{element.others}}
</td>
</ng-container>
<tr mat-header-row *matHeaderRowDef="TargetTableColumns"></tr>
<tr mat-row *matRowDef="let row; columns: TargetTableColumns"></tr>
</table>
And my rowSpanLength function like below:
rowSpanLength(item) {
let nameArr = this.targetData.filter(i => i.name === item.name);
//return length if the item is first element in above array else 0
return nameArr[0].id === item.id ? nameArr.length : 0;
}
This function will keep rowSpan if the item/tr is first one from Group, for rest of all items the Name td will be hidden.
The result is like below which is what i wanted. got this idea from #uminder (https://stackoverflow.com/users/2358409/uminder) stackblitz

Not able to implement Sorting and Pagination in Angular 7, multiple tables

Not able to implement Sorting and Pagination in Angular 7, in mat-accordions (mat-expansion-panel) where each of them have a mat-table with independent datasources. Sorting and pagination which is pretty easy in implementation while for a single table, is giving trouble when I am trying to do it from a mat-accordion having multiple mat-expansion-panels.
I have tried this (https://stackblitz.com/edit/data-table-multiple-data-source) method, but cannot change the type of view in code, so the dropdowns have to stay.
<div class="grid-container">
<div class="grid-list">
<mat-accordion class="expand-panel">
<mat-expansion-panel>
<mat-expansion-panel-header>
<mat-panel-title>
Case Document
</mat-panel-title>
</mat-expansion-panel-header>
<button class="add-button" mat-mini-fab matTooltip="Add Document" style="float: right">
<mat-icon class="add" (click)="addPopup('documentUpload')">add</mat-icon>
</button>
<table mat-table [dataSource]="documentDataSource" matSort>
<ng-container matColumnDef="document-name">
<th class="header" mat-header-cell *matHeaderCellDef mat-sort-header>Document Name</th>
<td mat-cell *matCellDef="let document">{{document?.name}}</td>
</ng-container>
<ng-container matColumnDef="document-category">
<th class="header" mat-header-cell *matHeaderCellDef mat-sort-header>Category</th>
<td mat-cell *matCellDef="let document">{{document?.category}}</td>
</ng-container>
<ng-container matColumnDef="document-date">
<th class="header" mat-header-cell *matHeaderCellDef mat-sort-header>Date Uploaded</th>
<td mat-cell *matCellDef="let document">{{document?.createdDate}}</td>
</ng-container>
<tr mat-header-row *matHeaderRowDef="documentTableColumns"></tr>
<tr mat-row *matRowDef="let document; columns: documentTableColumns"></tr>
</table>
<mat-paginator [pageSizeOptions]="[5, 10, 25, 100]" showFirstLastButtons></mat-paginator>
</mat-expansion-panel>
</mat-accordion>
</div>
<div class="grid-list">
<mat-accordion class="expand-panel">
<mat-expansion-panel>
<mat-expansion-panel-header>
<mat-panel-title>
Case History
</mat-panel-title>
</mat-expansion-panel-header>
<table mat-table #historySort="matSort" [dataSource]="caseHistoryDataSource"
matSort>
<ng-container matColumnDef="type">
<th class="header" mat-header-cell mat-sort-header *matHeaderCellDef>Action</th>
<td mat-cell *matCellDef="let history">{{history?.type}}</td>
</ng-container>
<ng-container matColumnDef="key">
<th class="header" mat-header-cell mat-sort-header *matHeaderCellDef>Case Property</th>
<td mat-cell *matCellDef="let history">{{history?.key}}</td>
</ng-container>
<ng-container matColumnDef="valueName">
<th class="header" mat-header-cell mat-sort-header *matHeaderCellDef>Revised Value</th>
<td mat-cell *matCellDef="let history">{{history?.valueName}}</td>
</ng-container>
<ng-container matColumnDef="oldValueName">
<th class="header" mat-header-cell mat-sort-header *matHeaderCellDef>Previous Value</th>
<td mat-cell *matCellDef="let history">{{history?.oldValueName}}</td>
</ng-container>
<ng-container matColumnDef="createdDate">
<th class="header" mat-header-cell mat-sort-header *matHeaderCellDef>Date and Time</th>
<td mat-cell *matCellDef="let history">{{history?.createdDate | date: 'short'}}</td>
</ng-container>
<tr mat-header-row *matHeaderRowDef="historyTableColumns"></tr>
<tr mat-row *matRowDef="let history; columns: historyTableColumns"></tr>
</table>
<mat-paginator [pageSizeOptions]="[5, 10, 25, 100]" showFirstLastButtons></mat-paginator>
</mat-expansion-panel>
</mat-accordion>
</div>
<div>
And here is the .ts file implementation.
#ViewChild(MatPaginator) historyPaginator: MatPaginator;
#ViewChild(MatSort) historySort: MatSort;
#ViewChild(MatPaginator) documentPaginator: MatPaginator;
#ViewChild(MatSort) documentSort: MatSort;
async ngAfterViewInit() {
this.caseHistoryDataSource.paginator = this.historyPaginator;
this.caseHistoryDataSource.sort = this.historySort;
this.documentDataSource.paginator = this.documentPaginator;
this.documentDataSource.sort = this.documentSort;
}
The data is visible, and showing properly, but the paginator and sorting are not working.
You should bind your pagination and sort once you loaded with data like..
this.caseHistoryDataSource=new MatTableDataSource<any>(data);
this.caseHistoryDataSource.paginator = this.historyPaginator;
this.caseHistoryDataSource.sort = this.historySort;

How to add sub columns in Mat table column of angular Material table

I am trying to create a mat table with sub columns using Angular Material Table like the link. Is there a way to do this with angular material table? Can I create sub columns from one the columns? Please check the table from the below link
https://datatables.net/examples/basic_init/complex_header.html
Old question, but I had a similar problem and found this example. Angular Material version is 7.3.1. The complete project can be found here
table-basic-example.html
<table mat-table [dataSource]="dataSource" class="mat-elevation-z8">
<!--- Note that these columns can be defined in any order.
The actual rendered columns are set as a property on the row definition" -->
<!-- Position Column -->
<ng-container matColumnDef="position">
<th mat-header-cell *matHeaderCellDef> No. </th>
<td mat-cell *matCellDef="let element"> {{element.position}} </td>
</ng-container>
<!-- Name Column -->
<ng-container matColumnDef="name">
<th mat-header-cell *matHeaderCellDef> Name </th>
<td mat-cell *matCellDef="let element"> {{element.name}} </td>
</ng-container>
<!-- Weight Column -->
<ng-container matColumnDef="weight">
<th mat-header-cell *matHeaderCellDef> Weight </th>
<td mat-cell *matCellDef="let element"> {{element.weight}} </td>
</ng-container>
<!-- Symbol Column -->
<ng-container matColumnDef="symbol">
<th mat-header-cell *matHeaderCellDef> Symbol </th>
<td mat-cell *matCellDef="let element"> {{element.symbol}} </td>
</ng-container>
<!-- Header row first group -->
<ng-container matColumnDef="header-row-first-group">
<th mat-header-cell *matHeaderCellDef
[style.text-align]="center"
[attr.colspan]="2">
First group
</th>
</ng-container>
<!-- Header row second group -->
<ng-container matColumnDef="header-row-second-group">
<th mat-header-cell *matHeaderCellDef [attr.colspan]="2"> Second group </th>
</ng-container>
<tr mat-header-row *matHeaderRowDef="['header-row-first-group', 'header-row-second-group']"></tr>
<tr mat-header-row *matHeaderRowDef="displayedColumns"></tr>
<tr mat-row *matRowDef="let row; columns: displayedColumns;"></tr>
</table>
table-basic-example.ts
import {Component} from '#angular/core';
export interface PeriodicElement {
name: string;
position: number;
weight: number;
symbol: string;
}
const ELEMENT_DATA: PeriodicElement[] = [
{position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},
{position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},
{position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},
{position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},
{position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},
{position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},
{position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},
{position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},
{position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},
{position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},
];
/**
* #title Basic use of `<table mat-table>`
*/
#Component({
selector: 'table-basic-example',
styleUrls: ['table-basic-example.css'],
templateUrl: 'table-basic-example.html',
})
export class TableBasicExample {
displayedColumns: string[] = ['position', 'name', 'weight', 'symbol'];
dataSource = ELEMENT_DATA;
}
table-basic-example.css
table {
width: 100%;
}
th.mat-header-cell, td.mat-cell {
text-align: center;
border: 1px solid #CCC;
padding: 0 !important;
}
I wanted a multi-header data table where the 2nd header is in the 2nd row of the data table field but didn't find any solutions related to Angular Material.
2nd header having ‘Area’, ‘City’, ‘State’ will be rendered below 'Address' header, thus using attr.colspan value = 3
Also, <tr mat-header-row *matHeaderRowDef="['stub', ‘area’ , ‘city’, ‘state’]"> is added for 2nd header to work
Here is the solution I have implemented in my code using colspan attribute. Please refer to the comments mentioned in the code
<div class="mat-elevation-z8">
<table mat-table [dataSource]="dataSource">
<ng-container matColumnDef="model">
<th mat-header-cell *matHeaderCellDef class="header-font"> Model</th>
<td mat-cell *matCellDef="let element"> {{element.model}} </td>
</ng-container>
<ng-container matColumnDef="name">
<th mat-header-cell *matHeaderCellDef class="header-font"> Name </th>
<td mat-cell *matCellDef="let element"> {{element.name}} </td>
</ng-container>
<ng-container matColumnDef="address">
<th mat-header-cell [attr.colspan]="3" *matHeaderCellDef class="header-font"> Address </th>
</ng-container>
<!--2nd Header-->
<ng-container matColumnDef="stub">
<th mat-header-cell style="background-color: white; border: none;" [attr.colspan]="2" *matHeaderCellDef> </th>
<!--stub is necessary because 2nd header should not be placed below Model, Name-->
</ng-container>
<ng-container matColumnDef="area">
<th mat-header-cell class="header-font" *matHeaderCellDef> Area </th>
</ng-container>
<ng-container matColumnDef="city">
<th mat-header-cell class="header-font" *matHeaderCellDef> City </th>
</ng-container>
<ng-container matColumnDef="state">
<th mat-header-cell class="header-font" *matHeaderCellDef> State </th>
</ng-container>
<!--add 1 more ng-container for Penetration % field-->
<tr mat-header-row *matHeaderRowDef="displayedColumns"></tr>
<tr mat-header-row *matHeaderRowDef="['stub', ‘area’ , ‘city’, ‘state’]"></tr> <!--Enable this for 2nd Header-->
<tr mat-row *matRowDef="let row; columns: displayedColumns;"></tr>
</table>

Resources