https://xuemingfeng.github.io/ngx-query/
ngx-query is a component for Angular 4+. A person searches data easily through ngx-query.
- Quck search panel
- Advanced search panel
- Query templates
- Custom value input box
- Custom Toolbar
- Multi-language
Install through npm:
npm install --save ngx-query
Then include in your apps module:
import { Component, NgModule } from '@angular/core';
import { NgxQueryModule } from 'ngx-query';
@NgModule({
imports: [
NgxQueryModule.forRoot({
labels:{
buttons: {
'quick': 'Quick',
...
},
...
},
...
})
]
})
export class MyModule {}
Finally use in one of your apps components:
import { Component } from '@angular/core';
@Component({
template: '<ng-query #ngxQuery [title]="queryTitle" [fields]="fields" [queryTemplates]="queryTemplates" (query)="search($event)"></ng-query>'
})
export class MyComponent {}
You may also find it useful to view the demo source.
<script src="node_modules/ngx-query/bundles/ngx-query.umd.js"></script>
<script>
// everything is exported ngxQuery namespace
</script>
All documentation is auto-generated from the source via compodoc and can be viewed here: https://xuemingfeng.github.io/ngx-query/docs/
- Install Node.js and NPM
- Install local dev dependencies:
npm install
while current directory is this repo
Run npm start
to start a development server on port 8000 with auto reload + tests.
Run npm test
to run tests once or npm run test:watch
to continually run tests.
- Bump the version in package.json (once the module hits 1.0 this will become automatic)
npm run release
MIT