Building forms in Angular presents two distinct approaches: template-driven forms vs reactive forms. Choosing the right method depends on your project’s complexity, your team’s comfort level, and the desired level of control over form behavior. This article delves into the strengths and weaknesses of both approaches, equipping you to make […]
FE based
In the FE based category you will be able to find ways to build complex and easy interfaces, with a view to being user-friendly and dynamic. Mostly javascript will be used on which various frameworks are built such as vue, angular and the super set of javascript: typescript.
Welcome, intrepid developers, to your launchpad for mastering the mighty Angular framework! Whether you’re a seasoned JavaScript adventurer or a curious newcomer gazing at the vast cosmos of web development, this series of tutorials is your rocket fuel to propel you forward.
Angular, crafted by the brilliant minds at Google, is a TypeScript-based framework that empowers you to build dynamic applications with elegance and efficiency. From crafting interactive user interfaces to seamlessly managing data flows, Angular provides a robust structure and a treasure trove of tools to navigate the ever-evolving web landscape.
Scaling up with an Angular project: choosing the right strategy
As your Angular project grows, managing reusable components becomes crucial. This article explores four popular approaches: using a common industry library, a dedicated components library, modularizing within the project, and the single-module approach. Each solution offers unique benefits and trade-offs, guiding you towards the best fit for your specific needs. […]
Add external HTML pages inside components
We may need to insert static or dynamic HTML pages / fragments coming from outside our website. With this little trick we can make a “get” call for the HTML we need to show it in a <div> container. The fragment must not have unexpected HTML (such as style or […]
Angular Translate
Dynamic labels can be generated, translated with the user’s language and/or language administration. All starts with the import of translation modules: Then generate our json with the translations of the labels: In our module we will add imports and a function to load an external file. In a component we […]
Create an Angular Formly form modal
Let’s create an Angular Formly form modal.With Angular we can create forms in many different ways, depending on what we need to do and depending on the complexity of the request.The library we are going to use today helps us in the generation of dynamic forms that allow the user […]