josebalius / ngReactGrid

A really fast Angular grid using the power of React to render. Based on ng-grid and jQuery DataTables.
http://josebalius.github.io/ngReactGrid/
MIT License
328 stars 47 forks source link

is there any way to refresh the resultant data obtained from grid search? #73

Closed sohanboost closed 9 years ago

sohanboost commented 9 years ago

I am using ng-react-grid in such a way that its data get refresh every 1sec. If I search within grid using "Grid Search" control, I am getting the desired resultant data but this resultant data isn't getting refreshed. Is there any way to achieve this?

josebalius commented 9 years ago

@sohanboost i don't think this is supported at the moment. We would have to expose an API for you apply local data without resetting the grid state.

There are other ways you could do it but it would result in a hack, such as reading the DOM value of the search box and doing the filtering yourself and then setting the data, again not ideal.

sohanboost commented 9 years ago

ok. Thanks.