python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
adding custom Columns to Angular Material Exporter
I have a question about the Angular material exporter.
Is it possible to expand table columns for export or show hidden columns in excel export?
I have a column memory usage. it looks something like &...
Sinio
Votes: 0
Answers: 0
How to sort Observable<string> type column in angular mat-table?
Is it possible to sort Observable type column in Angular mat-table?
export interface PeriodicElement {
name: Observable<string>;
position: number;
weight: number;
symbol: string;
}
I wa...
Marius Kazlauskas
Votes: 0
Answers: 1
Angular - How to avoid redundant function calls in table cells?
I have to display a table for an array of objects. Each object has a few static properties which I always have to display and a list of dynamic properties. For each of those dynamic properties, I have...
Chris
Votes: 0
Answers: 1
Angular filter table on checkbox value
I am trying to filter my table based on the value of a checkbox, the filter should be possible with a dropdown, which shows either all rows, rows where the checkbox is checked, and rows where the chec...
kikjj
Votes: 0
Answers: 1