You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<table class="mdl-data-table mdl-js-data-table mdl-data-table--selectable mdl-shadow--2dp data-table" [mfData]="tableData" #mf="mfDataTable" [mfRowsOnPage]="dataTableRows"></table>```
And in my component I have
dataTableRows = "40"
On initial load, it loads 40 records. However, I would expect that if I had an input bound to this value:
<md-input placeholder="Number of rows" [(ngModel)]="dataTableRows">
That when I change this, it would re-render the table with the new value of rows I've entered in the input.
I have verified that the value is changing correctly, but the table is not re-rendering.
The text was updated successfully, but these errors were encountered:
Here's my table definition:
dataTableRows = "40"
<md-input placeholder="Number of rows" [(ngModel)]="dataTableRows">
The text was updated successfully, but these errors were encountered: