Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
ng2-qgrid
Advanced tools
Angular data grid
npm install ng2-qgrid
import { GridModule } from 'ng2-qgrid';
import { ThemeModule } from 'ng2-qgrid/theme/material';
@NgModule({
imports: [
GridModule,
ThemeModule
]
})
export class AppModule {
}
Note that now q-grid supports 2 themes out of box @angular/material
and basic
, the second one doesn't require @angular/material
to be installed.
@Component({
selector: 'my-component',
template: `
<q-grid [rows]="myRows | async">
<q-grid-columns generation="deep">
</q-grid-columns>
</q-grid>
`
})
export class MyComponent {
myRows: Observable<[]>;
constructor(dataService: MyDataService) {
this.myRows = dataService.getRows();
}
}
Note that q-grid rows should be an array of objects, any other types like array of numbers or strings will throw an error.
If you use material
theme from the q-grid package, you also need to install angular material
git clone https://github.com/qgrid/ng2.git
npm install
npm run start
Chrome
is supported.Safari
is in progress.FireFox
is in progress.Edge
is in progress.IE11
is in progress.Code licensed under MIT license.
FAQs
Angular data grid
We found that ng2-qgrid 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.