Polymer Nested Custom Component Use
Polymer supports Nested Custom Components creation. In this Demo, “We will create two custom component where One component will call another insides its template“. The first component ts-names is the list of the names.The second component ts-red alters the colors of the text to red. publish property is necessary for inner component for a […]
Use of Polymer async Method
Polymer WebComponent library provides async() method to handle asynchronous behavior . It is similar to Window.setTimeout() method with current context(this) attached to it. In this Demo,”We will see the use of async() method to build a clock“. Below code has the definition for our ts-clock component in index.html. <!doctype html> <html> <head> <title>Polymer […]
Understanding Polymer Core Ajax Element
Polymer Library provided Core and Paper Elements inbuilt in the library. As We know Polymer is a kind of Polyfill for Web Components.To help the developers with custom elements these core and paper elements are added . In this Demo, “We will Explore the Core Ajax polymer element“. You can get more info and download […]
Getting Started With Web Component : Polymer JS Library
Web Components are the new upcoming standard in Front end world. We can create Custom Elements Using Web Component. Polymer is a Polyfill library for Web Component development.It is developed and manged by Google. Polymer library can […]