Angular Articles

Found 15 articles

Why is Tailwind CSS not working in Angular component SCSS files?

danish shafi
danish shafi
Updated on 07-Nov-2024 2K+ Views

Tailwind CSS is a utility-first CSS framework that helps to simplify the styling process by using an enormous number of pre-defined classes that can be applied directly in HTML. However, when using it with Angular component SCSS files, sometimes issues occur, especially since Tailwind CSS is not designed to be imported into individual component styles by default. This article addresses key issues as to why Tailwind CSS doesn't work as it would in an Angular component SCSS file and proposes ways around the problems that can come with it. Table of Content There could be multiple reasons why Tailwind CSS ...

Read More

How I Got Started with Angular and TypeScript?

Mohit Panchasara
Mohit Panchasara
Updated on 31-Aug-2023 213 Views

I got started with Angular and TypeScript by realizing the importance of building scalable and maintainable web applications. Angular, as a web application framework, provided me with the tools I needed to build complex and dynamic applications with ease. TypeScript, as a statically typed superset of JavaScript, gave me the ability to write cleaner code, catch errors before runtime, and improve the overall scalability of my applications. In this tutorial, I will share my experience and guide you through creating a simple Angular application using TypeScript. We will cover the basics of Angular and TypeScript and provide a step-by-step guide ...

Read More

How To Deploy ONLYOFFICE Docs On Angular?

Satish Kumar
Satish Kumar
Updated on 10-Jul-2023 597 Views

Introduction ONLYOFFICE Docs is a powerful self-hosted online office suite that allows users to edit and collaborate on documents. It offers advanced features such as document co-authoring, real-time editing, revision history, and third-party integrations. ONLYOFFICE is an open-source platform that works with different languages and frameworks. Angular, on the other hand, is a popular front-end framework for building web applications. It was developed by Google and provides robust support for building dynamic and scalable applications. With Angular, you can create complex web applications with minimal code. Prerequisites Required Software and Tools First, you will need to have Node.js installed. ...

Read More

How to convert angular 4 application to desktop application using electron?

Prerna Tiwari
Prerna Tiwari
Updated on 06-Mar-2023 2K+ Views

Utilizing web technologies like JavaScript, HTML, and CSS, you can create cross-platform desktop applications using the popular framework Electron. This article will go over how to use Electron to transform an Angular 4 application into a desktop application. Setting Up Electron Before converting our Angular 4 application to a desktop application, we'll need to set up Electron. Here are the steps to set up Electron − Install Node.js Electron requires Node.js to be installed on your machine. You can download and install the latest version of Node.js from the official website. Install Electron Once Node.js is installed, you can install ...

Read More

Difference between constructor and ngOnInit in Angular 8

Sravani Alamanda
Sravani Alamanda
Updated on 21-Feb-2023 10K+ Views

We can create robust applications using a number of life cycle functions using Angular. As it is the response of the event, the constructor and ngOnInit play important roles in developing applications. May this constructor and ngOnInit terms often confuse us. Constructor and ngOnInit will be available from the life cycle hooks of a component. This will provide extensive benefits to us in developing applications. Let’s check the differences below. Before that, let’s discuss the constructor and ngOnInit in detail. What is the Constructor in Angular 8? Constructor is a default method for a class and is called whenever we ...

Read More

Difference between NodeJS and AngularJS

Kiran Kumar Panigrahi
Kiran Kumar Panigrahi
Updated on 28-Jul-2022 1K+ Views

The demand for different programming languages is constantly shifting due to the creation of new mobile and online applications. Additionally, emerging programming languages provide useful capabilities for the construction of powerful websites. A study done by developers at 2020 shows that JavaScript is widely considered to be one of the most popular technologies.Both NodeJS and AngularJS are open-source technologies that are based on JavaScript and are in wide use. AngularJS is a framework written in JavaScript, while NodeJS is a runtime environment that works across several platforms.Angular is a client-side JavaScript framework that allows developers to construct dynamic web applications ...

Read More

SAP UI5 framework and comparison with JQuesry and Backbone, Angular, etc.

karthikeya Boyini
karthikeya Boyini
Updated on 15-Jun-2020 277 Views

The SAPUI5 framework is the original version of the SAP toolkit which was released initially. This version of the toolkit is a proprietary version. Later SAP released an Open source version of it named OpenUI5. Functionally it is almost equivalent in terms of basic operations negating few features but overall sufficient enough as a UI framework.This UI5 framework (applies to both SAPUI5 and OpenUI5) is capable of dispensing all major tasks expected from a full-fledged UI framework. It supports following features:Model View Controller architectureRouting engineModules with the help of module loadersFull data binding either in XML, JSON or using web servicesCulture ...

Read More

Using an Angular app as SAP Fiori application

Anjana
Anjana
Updated on 13-Feb-2020 775 Views

As you mentioned, you are moving to SAP so it means you are moving to SAP HANA Cloud platform or backend SAP system. You can continue with just HTML Angular application that can connect to the backend via an OData service. Angular JS is JavaScript library that adds lot of features to your application. One thing to note here that if you are planning to use Fiori Launchpad, it could be an issue.Following are the advantages/disadvantages of using angular framework:AdvantagesUsing Angular, you can develop complex High interactive rich internet web application.Angular application can be easily integrated with third-party library like Kendo ...

Read More

Not able to get the value of radio select setting dynamically in AngularJS

Krantik Chavan
Krantik Chavan
Updated on 29-Jan-2020 242 Views

To get the value of radio select, add [$index] to each ng-model like the following: India USThe above would give you the result dynamically in AngularJS.

Read More

How do I programmatically create a DragEvent for Angular app and HTML?

Lakshmi Srinivas
Lakshmi Srinivas
Updated on 29-Jan-2020 251 Views

To create a DragEvent, use the protractor API. The official documentation states:The browser.get method loads a page. Protractor expects Angular to be present on a page, so it will throw an error if the page it is attempting to load does not contain the Angular library. (If you need to interact with a non-Angular page, you may access the wrapped web driver instance directly with browser.driver).Use the following pattern as well:browser .actions() .dragAndDrop(myEle, {x:100,y:100}) .perform();

Read More
Showing 1–10 of 15 articles
« Prev 1 2 Next »
Advertisements