angular2-smart-table
angular2-smart-table copied to clipboard
Angular 2 Smart Data Table component
https://github.com/dj-fiorex/angular2-smart-table/blob/a48d0205bebabb700ef59922cd39d3efce80ad03/projects/angular2-smart-table/src/lib/components/filter/custom-filter.component.ts#L31 Following options to solve this: * do not force the implementation * document it better and create a proper interface
When using "expand" on a table a expanded row will collapse when updating the table by calling load(). Is it possible to prevent that? And is it somehow possible to...
### Current Behavior When you try to update a filter, you probably want to use ```typescript this.source.setFilter([{ field: 'timestamp', search: myquery, }]); ``` Problem No. 1 : this erases all...
The "Documentation" page shall document the events and the conditions when they are fired. This might not be 100% possible, because the implementation might not allow us to clearly say...
In this example: ``` settings: Settings = { columns: { id: { title: 'ID' }, name: { title: 'Full Name' }, username: { title: 'User Name' }, email: { title:...
The `LocalDataSource` usually keeps a reference to the array of data that was loaded: https://github.com/dj-fiorex/angular2-smart-table/blob/51d46a563c186cd5c31d53e63602b801f71357e4/projects/angular2-smart-table/src/lib/lib/data-source/local/local.data-source.ts#L16-L26 However, the operations on that array are totally inconsistent. In the `prepend`, `append`, and `add`...