All Questions
10 questions
1
vote
1
answer
1k
views
Click event of Button in MatTable doesn't works
I'm new to Angular Material and have been implementing the MatTable by fetching the data from the Firebase (Real-time Database). For every Row of the MatTable, I need a button to delete the particular ...
0
votes
1
answer
245
views
Share Component data to Angular Material Dialog
I want to show a specific device data when i open the dialog, but first, i need to pass the device.key from my Component to the Dialog Component and then run the service that'll get the device data, ...
1
vote
1
answer
482
views
How to create and access array of objects in firebase manually in angular?
I have created list of multiple cards from array of objects stored in user.component.ts
user.component.ts
import { Component, OnInit } from '@angular/core';
import { AuthService } from '../service/...
0
votes
0
answers
177
views
Cannot display data in mat-table from array returned from service
Can someone help me with angular material table?
Getting data from firebase, it shows if I use snapshotChanges() but data doesn't appear when I return array with custom data.
let prdarr= [];
this.db....
0
votes
1
answer
332
views
Retrieve firebase list data to create a dynamic table
I want to push the values into a array like below when i retrieve values from firebase database
columns: any[];
this.columns = [
{ columnDef: 'FirstName', header: 'First Name', cell: (element: ...
0
votes
1
answer
495
views
How do I fetch firebase data into my individual mat-card in Angular?
How do I get the data available into an individual mat-card?
2
votes
0
answers
3k
views
Lazy Load data from Firebase Angular Material Table App
I use Angular Cli, AngularFire2 and Firebase.
I use the angular hardware table that works like a charm with small volume data but when I switch to a number of 300,000 objects, my application is ...
1
vote
2
answers
2k
views
Angular Material table with Firebase data - paginator and sort show but do not work
I have a Angular Material table with data from a Firebase database that populates as expected, however when I try to follow the docs to add paginator and sort they are both visible (I can see the ...
0
votes
1
answer
241
views
How to read firebase data into a simple HTML table with dynamic columns or into a Angular MAT Table
https://stackblitz.com/edit/dynamic-columns-mat-table
This is what i have so far.
This table renders perfectly but my requirement is that i dont know the column names beforehand so i need to mention ...
0
votes
1
answer
937
views
Angular / Firebase: Convert Material Date Picker Date from undefined into a time stamp
What I'm Using
angular
firebase
What I have
A selection of inputs
A Material Date Picker
When I hit a button, the values from the inputs are written to firebase
What isn't working
When selecting a ...