Hello,
we need an Angular 4-5 example that implement a server side paginated dxGrid with the following features:
Server side pagination (already included)
Server Side sorting (already included)
Server side column filtering
Server side external dxForm filtering ( example: some inputs and a submit button that call server and refresh the datasource of grid )
Master detail view with server side data source of child template like this example: https://js.devexpress.com/Demos/WidgetsGallery/Demo/DataGrid/AdvancedMasterDetailView/Mvc/Light/
We have already try to customize your example https://js.devexpress.com/Demos/WidgetsGallery/Demo/DataGrid/CustomDataSource/Angular/Light/
But I have some questions about CustomStore.
How to update the datasoure and re-render the grid with new CustomStore after a custom action-method (example: button click on external form outside the dxGrid).
Add more custom parameters in params variable to CustomStore before http.get call.
How to inject the http.get on other methods than constructor. (when I try to pass new CustomStore on my custom method I receive some errors like ‘method get undefined’ ).
Thanks in advance.