Frontend frameworks for desktop and responsive on other devices can be categorized in 5 main types:AngularReactJSVueJSClassic (html, css, jquery, thymeleaf, asp.net)Flutter ...
Showing posts with label FE Angular. Show all posts
Showing posts with label FE Angular. Show all posts
Saturday, August 21, 2021
Saturday, August 21, 2021
The competition among frontend frameworks
Monday, July 6, 2020
Monday, July 06, 2020
Add Redux lifestyle into Angular's Reactive State Management
If you are java developer and you are not good at design and frontend skill but you want to develop a java web application using microservices style, Angular is the best choice as front-end framework for you. Angular is like java Wicket framework. Both use real html DOM in markup file so that It is easy to incorporate with cut-css/html frontend developer to make a target ui page.
Redux is...
Saturday, May 9, 2020
Saturday, May 09, 2020
Angular 2 with ZK
With the emerging of reactjs and angular2, zk and other old ui java frameworks are standing before of going to history library but now angular2 has been integrated into zk and make it having more custom chosen for users so that zk framework is still used for maintainance and new java projects.
Angular 2 is integrated in zk by using client command binding to communicate with a Java...
Sunday, January 13, 2019
Sunday, January 13, 2019
Angular in Netbeans IDE
Requirements:
Netbeans IDE 8.2
Git-2.20.1-64-bit
npm installed
netbeanstypescript-2.x.nbm
Run commands:
npm install -g bower
npm install -g typescript
Detail at https://www.tutorialjinni.com/angular-2-netbeans-8.2-typescript-hello-world-example.h...
Sunday, April 8, 2018
Sunday, April 08, 2018
Add Kendo UI into Angular Quickstart sample
SystemJS is a dynamic ECMAScript (ES) module loader that is used by Angular Quickstart and other projects.
To use Kendo UI components for Angular with SystemJS, you have to explicitly list the package entry points. This article demonstrates how to implement the required configuration when you use the Angular Quickstart project template.
The source code for the completed sample project...
Saturday, April 7, 2018
Saturday, April 07, 2018
Beginning Kendo UI
1. What is Kendo UI
Kendo UI is a comprehensive framework which comes with a library of 70+ UI widgets, an abundance of data-visualization gadgets, client-side data source, and a built-in MVVM (Model-View-ViewModel) library. It provides AngularJS and Bootstrap integration and is also distributed as part of several product units that you can choose from depending on your project requirements.
Install...
Tuesday, October 17, 2017
Tuesday, October 17, 2017
Spring Boot REST + Angular 2 + JPA + Hibernate + MySQL CRUD Example
We will create a REST web service
application using Spring Boot and a client application using Angular 2.
REST web service will expose methods for create, read, update and delete
operation. The Angular application will use Angular Http
API for CRUD operation. If our client application is running on
different domain from web service domain, then the Spring Boot web
service controller will configure...
Saturday, October 7, 2017
Saturday, October 07, 2017
Connecting your Angular 2 App to your Java EE Backend
1-Introduction
You’ve
been developing in Java EE all this time, but you’re tired of using
JSF, or perhaps even Struts, and want to move to something more modern
for your front end? Angular 2 is a perfect fit, and with the recent
release of Angular 2 GA, now is the ideal time to make the move! Besides
being easier to develop and maintain, an Angular 2 application allows
you to take advantage...
Thursday, October 5, 2017
Thursday, October 05, 2017
HTML attribute vs. DOM property in Angular
1-HTML attribute vs. DOM property
The distinction between an HTML attribute and a DOM property is crucial to understanding how Angular binding works.
Attributes are defined by HTML. Properties are defined by the DOM (Document Object Model).
A few HTML attributes have 1:1 mapping to properties. id is one example.
Some HTML attributes don't have corresponding properties. colspan is one example.
Some...
Tuesday, October 3, 2017
Tuesday, October 03, 2017
Angular Misc
Observables
Observables provide support for passing messages between publishers
and subscribers in your application. Observables offer significant
benefits over other techniques for event handling, asynchronous
programming, and handling multiple values.
Observables are declarative—that is, you define a function for
publishing values, but it is not executed until a consumer subscribes to
it....