Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
ngx-datatable
Advanced tools
Simple table extension with sorting, filtering, paging... for Angular apps
http://valor-software.github.io/ng2-table/
npm i ngx-datatable --save
Alternatively, you can download it in a ZIP file.
page
(number
) - the default page after the table component loading
itemsPerPage
(number
) - number of the displaying items (rows) on a page
maxSize
(number
) - number of the displaying pages before ...
numPages
(number
) - total number of the pages
length
(number
) - total number of the items after filtering (of it's chosen)
config
(?any
) - config for setup all plugins (filtering, sorting, paging):
paging
(?boolean
) - - switch on the paging pluginsorting
(?any
) - switch on the sorting plugin
columns
(Array<any>
) - only list of the columns for sortingfiltering
(?any
) - switch on the filtering plugin
filterString
(string
) - the default value for filtercolumnName
(string
) - the property name in raw dataclassName
(string|Array<string>
) - additional CSS classes that should be added to a
rows
(?Array<any>
) - only list of the rows which should be displayed
columns
(?Array<any>
) - config for columns (+ sorting settings if it's needed)
title
(string
) - the title of column headername
(string
) - the property name in datasort
(?string|boolean
) - config for columns (+ sorting settings if it's needed), sorting is switched on by default for each columnclassName
(string|Array<string>
) - additional CSS classes that should be added to a column headerfiltering
(?any
) - switch on the filtering plugin
filterString
(string
) - the default value for filtercolumnName
(string
) - the property name in raw datatableChanged
: data change event handlercellClicked
: onclick event handlerThe responsibility of the filtering issue falls on user. You should choose on which columns the filter would be applied. You could add any number of different filters. Filter string - it's a string for matching values in raw data. Column name refers to the property name in raw data. The rest logic you could organize by yourself (the order of filters, data formats, etc). Even you could use filter for list of data columns.
You can also set up filtering
param for columns, in this case filter box will appear in first row of the table.
Data sorting could be in 3 modes: asc, desc and without sorting data (as it comes from backend or somewhere else). If you want to switch off the sorting for some of the columns then you should set it forcibly in columns config (set property sort to false value for each column you want)
Pagination could be used from ng2-bootstrap - pagination component. When the page is changed, the pagination component will emit event change-table
with an object {page, itemsPerPage}. Then you can easily subscribe on it and request corresponding raw data.
Please follow this guidelines when reporting bugs and feature requests:
Thanks for understanding!
The MIT License
FAQs
Simple Angular table components with sorting, filtering...
We found that ngx-datatable demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.