Export Angular Material Tables

Data is everything and everywhere. UX to present complicated information is cruicial for data centric use-cases. Most of the time good old tables suffice and almost always requirement specifications imply "Table Export" feature. If you are lucky the component suit you develope with handles table exporting boilerplate otherwise it would be the time to invent … Continue reading Export Angular Material Tables

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