
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
ngu-mx-table
Advanced tools
ngu-mx-table ngu-mx-table is a simple table to show the data in the matrix or grid format along with the form components.
ngu-mx-table is a simple table to show the data in the matrix or grid format along with the form components.
install library from npm
npm i ngu-mx-table
import { NguMatrixTableModule } from 'ngu-mx-table';
@NgModule({
declarations: [],
imports: [NguMatrixTableModule],
providers: [],
bootstrap: []
})
export class AppModule { }
<ngu-mx-table>
<ngu-mx-th [headers]="headers"></ngu-mx-th>
<ngu-mx-tr [data]="dataList" *ngFor="let row of dataList">
<ngu-mx-td *ngFor="let data of row.values">
// your component goes here
</ngu-mx-td>
</ngu-mx-tr>
</ngu-mx-table>
Compoenet | Attributes | Comments |
---|---|---|
ngu-mx-table | Its the table contains the child components | |
ngu-mx-th | headers | Its the table header component and pass array od string which will the table header labels |
ngu-mx-tr | data | Its the table row like traditional tr of the table |
ngu-mx-td | Its the table data and in the body we can set any html component and render |
FAQs
ngu-mx-table ngu-mx-table is a simple table to show the data in the matrix or grid format along with the form components.
We found that ngu-mx-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
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.