
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
angular5-table
Advanced tools
npm i angular5-table
If your want use npm for install bootsrap use:
npm install bootstrap@4.0.0 font-awesome@4.7.0
and set the script into angular-cli.json
"styles": [
"../node_modules/bootstrap/dist/css/bootstrap.min.css",
"../node_modules/font-awesome/css/font-awesome.css",
"styles.css"
]
This component require the css link and the font-awesome link of bootstrap 4. You can import this link in your index.html
Click Here for visit the bootstrap site and copy the cdn file.
<link rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
import {Angular5TableModule} from 'angular5-table';
<angular5Table
[dataTable]="data"
[dataColumn]="column"
[itemsForPage]="10"
[options]="options"
[pagination]="true"
[filter]="true"
[sortable]="true"
[functionDefault]="yourFunction">
</angular5Table>
| Attribute | Description |
|---|---|
| dataTable | are the data to be displayed in the data |
| dataColumn | are the data column to be show in the data header |
| itemsForPage | are the number of items to display per page |
| options | this attribute is used to specify any additional columns, you can specify columns to add icons or buttons |
| pagination | is the option to display data pagination |
| sortable | is the option to use if your want data ordering asc/ desc |
| functionDefault | associating a function to this attribute if you want to interact with the data in the data, the associated function returns the oparations that will be performed with any icons or buttons included in the options |
The option attribute is an array of object. The object must contain the following keys:
this.options = [
{name: 'download', type: 'img', class: 'img-table', url: 'test.png'},
{name: 'edit', type: 'img', class: 'btn-table', url: '../assets/test.png'},
{name: 'delete', type: 'img', class: 'btn-table', url: '../assets/test.png'},
{name: 'button', type: 'button', class: 'form-control', url: ''},
];
The function default attribute, is a function that manage the click event of a icons or button for this table.
When you click edit icon the event return 4 params. You can pass function to selector attribute [functionDefault]="yourFunction" :
yourFunction(index: number, type: any, item: any, option: any){
// ...
}
This table has been completely tested with chrome. The main support of the browser are:
FAQs
``` javascript npm i angular5-table ```
The npm package angular5-table receives a total of 2 weekly downloads. As such, angular5-table popularity was classified as not popular.
We found that angular5-table 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.