Categories
Angular Opinions Tutorials

Add Sorting to Your Table Using Angular Signals

In the previous guide we populated HTML table with Angular httpResource API. You can read more about it. This time we will make the table interactive. We will find out how well httpResource and Angular Signals plays together when it comes to sorting. What are we building with Angular Signals Here is how the final […]

Categories
Angular Tutorials

Build an Angular HTML Table Using httpResource

Signals did their perfectly to make synchronous flow reactive, but for a while, Angular didn’t have built-in batteris to handle asynchronous network flow natively. We had to rely on interoperability tools like toSignal and toObservable, but using them meant constantly jumping between two completely different worlds: RxJS Observables and Signals. Angular fixes this friction with httpResource, making the […]