Angular – Material Table Filter

If you have been using Angular as your client side framework and worked with Material Tables before you probably know that custom and complicated filtering of the tables are not supported by default. For those complicated filtering requirements you eventually find yourself repeatadly writing ui code for filter inputs and making filter-predicate calls for every … Continue reading Angular – Material Table Filter

Angular – Intercepting Http Calls

Angular allows you to intercept web requests and responses through HttpInterceptor implementations. In this tutorial we will demonstrate how to create and use an http interceptor implementation in order to intercept http requests for adding a dummy authentication header and setting a custom read timeout parameter then we will demonstrate intercepting the response for handling … Continue reading Angular – Intercepting Http Calls