Usage example
app.ts
; ;
app.html
Name Email Age City {{item.name}} {{item.email}} {{item.age}} {{item.city | uppercase}}
API
mfData
directive
- selector:
table[mfData]
- exportAs:
mfDataTable
- inputs
mfData: any[]
- array of data to display on tablemfRowsOnPage: number
- number of rows should be displayed on page (default: 1000)mfActivePage: number
- page number should be displayed on init (default: 1)mfAmountOfRows: number
- total amount of rows
- outputs
mfOnPageChange: any
- event of page changing or amount of rows on a page. You should write a function, what would reload data from server and use it here
mfDefaultSorter
component
- selector:
mfDefaultSorter
- inputs
by: any
- specify how to sort data (argument for lodash function _.sortBy )
mfBootstrapPaginator
component
Displays buttons for changing current page and number of displayed rows using bootstrap template (css for bootstrap is required). If array length is smaller than current displayed rows on page then it doesn't show button for changing page. If array length is smaller than min value rowsOnPage then it doesn't show any buttons.
- selector:
mfBootstrapPaginator
- inputs
rowsOnPageSet: number
- specify values for buttons to change number of diplayed rows