MARIA KERN NETZ98 GMBH MAGENTO 2 UI COMPONENTS THE JS PART

Size: px
Start display at page:

Download "MARIA KERN NETZ98 GMBH MAGENTO 2 UI COMPONENTS THE JS PART"

Transcription

1 MARIA KERN NETZ98 GMBH MAGENTO 2 UI COMPONENTS THE JS PART

2 Magento 2 UI Components The JS part Maria Kern Senior Frontend Architect at netz98 GmbH CommerceHero: maria-kern

3 AGENDA 1 DEFINITION 4 INITIALIZATION PROCESS 2 BASIC STRUCTURE 5 REAL LIFE EXAMPLE 3 USEFUL FUNCTIONS AND PROPERTIES 6 DEBUGGING 4 3

4 UI components definition

5 UI COMPONENTS DEFINITION The UI components are: the base for many user interface (UI) elements (buttons, fields, tables, minicart) designed for simple and flexible rendering of user interfaces defined in the module Magento_UI used in Magento frontend and backend 5

6 UI COMPONENTS DEFINITION BACKEND FRONTEND 6

7 UI COMPONENTS DEFINITION BACKEND Magento_Ui/js/form/components/fieldset FRONTEND Magento_Ui/js/form/ element/abstract Magento_Ui/js/grid/toolbar Magento_Ui/js/grid/listing 7

8 UI COMPONENTS DEFINITION BACKEND Magento_Ui/js/form/components/fieldset FRONTEND Magento_Checkout/js/view/cart/totals Magento_Ui/js/form/ element/abstract Magento_Ui/js/grid/toolbar Magento_Ui/js/grid/listing Magento_Checkout/js/view/minicart 8

9 Basic structure of UI components

10 BASIC STRUCTURE OF UI COMPONENTS JS DEPENDENCY AND INHERITANCE uiclass uielement uicollection / uicomponent 10

11 BASIC STRUCTURE OF UI COMPONENTS JS DEPENDENCY AND INHERITANCE uiclass <UI_Module_dir>/view/base/web/js/lib/ core/class.js uielement <UI_Module_dir>/view/base/web/js/lib/ core/element/element.js uicollection / uicomponent <UI_Module_dir>/view/base/web/js/lib/ core/collection.js 11

12 BASIC STRUCTURE OF UI COMPONENTS JS DEPENDENCY AND INHERITANCE uiclass uielement <UI_Module_dir>/view/base/web/js/lib/ core/class.js the uiclass is an abstract class where all components are extended from <UI_Module_dir>/view/base/web/js/lib/ core/element/element.js uicollection / uicomponent <UI_Module_dir>/view/base/web/js/lib/ core/collection.js 12

13 MAGENTO 2 UI COMPONENTS - THE JS PART BASIC STRUCTURE OF UI COMPONENTS JS DEPENDENCY AND INHERITANCE uiclass <UI_Module_dir>/view/base/web/js/lib/ core/class.js custom component 1 uielement uicollection / uicomponent <UI_Module_dir>/view/base/web/js/lib/ core/element/element.js use uielement class as base class of your own component, if you won t have child <UI_Module_dir>/view/base/web/js/lib/ core/collection.js components custom component 2 custom component 3 child component other child component other child component 13

14 MAGENTO 2 UI COMPONENTS - THE JS PART BASIC STRUCTURE OF UI COMPONENTS JS DEPENDENCY AND INHERITANCE uiclass <UI_Module_dir>/view/base/web/js/lib/ core/class.js custom component 1 uielement uicollection / uicomponent <UI_Module_dir>/view/base/web/js/lib/ core/element/element.js use uicollection / uicomponent class as base, if your component will <UI_Module_dir>/view/base/web/js/lib/ core/collection.js contain a collection of child UI components custom component 2 custom component 3 child component other child component other child component 14

15 MAGENTO 2 UI COMPONENTS - THE JS PART BASIC STRUCTURE OF UI COMPONENTS JS DEPENDENCY AND INHERITANCE uiclass <UI_Module_dir>/view/base/web/js/lib/ core/class.js uielement <UI_Module_dir>/view/base/web/js/lib/ core/element/element.js custom component 1 uicollection / uicomponent <UI_Module_dir>/view/base/web/js/lib/ core/collection.js custom component 2 custom component 3 child component other child component other child component 15

16 Useful functions and properties

17 USEFUL FUNCTIONS AND PROPERTIES EXTEND AND INITIALIZE extend() implements inheritance of UI components initialize() is called during instantiation 17

18 USEFUL FUNCTIONS AND PROPERTIES EXTEND AND INITIALIZE extend() implements inheritance of UI components initialize() is called during instantiation DEPENDENCY 18

19 USEFUL FUNCTIONS AND PROPERTIES EXTEND AND INITIALIZE extend() implements inheritance of UI components initialize() is called during instantiation INHERITANCE 19

20 USEFUL FUNCTIONS AND PROPERTIES EXTEND AND INITIALIZE extend() implements inheritance of UI components initialize() is called during instantiation OVERWRITE / EXTEND A METHOD 20

21 USEFUL FUNCTIONS AND PROPERTIES CONFIGURATION AND FIRST LEVEL PROPERTIES Every component has a defaults object > Declaring properties 21

22 USEFUL FUNCTIONS AND PROPERTIES CONFIGURATION AND FIRST LEVEL PROPERTIES custom properties 22

23 USEFUL FUNCTIONS AND PROPERTIES CONFIGURATION AND FIRST LEVEL PROPERTIES a lot of given properties 23

24 USEFUL FUNCTIONS AND PROPERTIES CONFIGURATION AND FIRST LEVEL PROPERTIES Configuration properties will be available as first level properties this.isvisible 24

25 USEFUL FUNCTIONS AND PROPERTIES CONFIGURATION AND FIRST LEVEL PROPERTIES A lot of default propertiesand methods are already set by the base classes, e.g.: this.index // name of component this.name // full name of component including parents this.template // path to template file this.component this.gettemplate() this.hastemplate() 25

26 USEFUL FUNCTIONS AND PROPERTIES KNOCKOUT JS Binding data to HTML Elements by data-bind Attribute 26

27 USEFUL FUNCTIONS AND PROPERTIES KNOCKOUT JS Declaring observable variables 27

28 USEFUL FUNCTIONS AND PROPERTIES KNOCKOUT JS Declaring observable variables 28

29 USEFUL FUNCTIONS AND PROPERTIES HANDLING OF CHILDREN The uicollection class (mainly) provides a lot of methods for handling of child components 29

30 USEFUL FUNCTIONS AND PROPERTIES HANDLING OF CHILDREN The uicollection class (mainly) provides a lot of methods for handling of child components Called for every child component > Child is given as parameter 30

31 USEFUL FUNCTIONS AND PROPERTIES HANDLING OF CHILDREN The uicollection class (mainly) provides a lot of methods for handling of child components initelement(child) {} this.elems() this.containers this.getchild( nameofchild ) // UI component this.haschild( nameofchild ) // boolean this.insertchild( nameofcomponent ) 31

32 Initialization process

33 INITIALIZATION PROCESS All the configurations are translated into json and added to the body 33

34 INITIALIZATION PROCESS 34

35 INITIALIZATION PROCESS All the configurations are translated into json and added to the body 35

36 INITIALIZATION PROCESS All the configurations are translated into json and added to the body 36

37 INITIALIZATION PROCESS The app calls Magento_Ui/js/core/renderer/layout and passes the UI component s configuration into the layout 37

38 INITIALIZATION PROCESS layout.js creates instances of UI components and its child components 38

39 Real life example

40 REAL LIFE EXAMPLE UI component map-widget 40

41 REAL LIFE EXAMPLE UI component map-widget 41

42 REAL LIFE EXAMPLE child UI component productlist productlist could be used in other components as well 42

43 REAL LIFE EXAMPLE Initialization UI Components JS and Template files 43

44 REAL LIFE EXAMPLE Parent component Child component 44

45 REAL LIFE EXAMPLE Parent extends uicollection class initelement(child) {} this.getchild( productlist ) 45

46 Options for debugging

47 OPTIONS FOR DEBUGGING Chrome Knockoutjs Context Debugger click on DOM element inside UI component scope 47

48 OPTIONS FOR DEBUGGING Magento DevTools by MageSpecialist, with Chrome extension list of all initialized UI components on the actual page with link to inspect the DOM element 48

49 CONCLUSION UI COMPONENTS THE JS PART Advantages easy teamwork standardized programming common procedures and requirements have already been implemented configuring without inline scripting! Disadvantages it takes time to get familiar with sometimes it feels to be restricted in frontend development 49

50 THANK YOU! Slides References:

The UIComponent Ally or Enemy?

The UIComponent Ally or Enemy? The UIComponent Ally or Enemy? Joaquín Ruiz @jokiruizlite - Disclaimer This presentation contains my own views and thoughts of Magento 2 UI Components. Index Index 1. Introduction and the controversy 2.

More information

Templates and Databinding. SWE 432, Fall 2017 Design and Implementation of Software for the Web

Templates and Databinding. SWE 432, Fall 2017 Design and Implementation of Software for the Web Templates and Databinding SWE 432, Fall 2017 Design and Implementation of Software for the Web Today What are templates? What are frontend components? How can I use these with React? 2 What s wrong with

More information

Introduction to Theming in Magento Go"

Introduction to Theming in Magento Go Introduction to Theming in Magento Go" Webinar date: July 20, 2011 Presenters: Kara Heinrichs, Brillig House (twitter: @kkarahh) Mosses Akizian, Magento (twitter: @monocat) Agenda for todayʼs webinar"

More information

CSCI 201 Google Chrome DevTools

CSCI 201 Google Chrome DevTools CSCI 201 Google Chrome DevTools This semester, our Factory code and assignments are written for use in Google Chrome. We will be taking advantage of Google Chrome DevTools, an assortment of web development

More information

Single Page Applications using AngularJS

Single Page Applications using AngularJS Single Page Applications using AngularJS About Your Instructor Session Objectives History of AngularJS Introduction & Features of AngularJS Why AngularJS Single Page Application and its challenges Data

More information

Course Details. Skills Gained. Who Can Benefit. Prerequisites. View Online URL:

Course Details. Skills Gained. Who Can Benefit. Prerequisites. View Online URL: Specialized - Mastering jquery Code: Lengt h: URL: TT4665 4 days View Online Mastering jquery provides an introduction to and experience working with the JavaScript programming language in the environment

More information

React(.js) the Domino Way High-Performance Client for Domino. Knut Herrmann

React(.js) the Domino Way High-Performance Client for Domino. Knut Herrmann React(.js) the Domino Way High-Performance Client for Domino Knut Herrmann CollabSphere 2018 Sponsors Knut Herrmann Senior Software Architect Leonso GmbH Notes Domino developer since version 2 Web application

More information

Magento 2 Certified Professional Developer. Exam Study Guide

Magento 2 Certified Professional Developer. Exam Study Guide Magento 2 Certified Professional Developer Exam Study Guide U Contents Contents Introduction... 1 Topics and Objectives... 3 1 Magento Architecture and Customization Techniques... 3 1.1 Describe Magento

More information

Ajax Category Products Extension for Magento 2

Ajax Category Products Extension for Magento 2 Ajax Category Products Extension User Manual for Magento 2 https://www.magebees.com/ajax-category-products-extension-formagento-2.html Ajax Category Products Extension for Magento 2 By Support Ticket:

More information

Vue.js Framework. Internet Engineering. Spring Pooya Parsa Professor: Bahador Bakhshi CE & IT Department, Amirkabir University of Technology

Vue.js Framework. Internet Engineering. Spring Pooya Parsa Professor: Bahador Bakhshi CE & IT Department, Amirkabir University of Technology Vue.js Framework Internet Engineering Spring 2018 Pooya Parsa Professor: Bahador Bakhshi CE & IT Department, Amirkabir University of Technology Outline Introduction to Vue.js The Vue instance Declarative

More information

AngularJS Fundamentals

AngularJS Fundamentals AngularJS Fundamentals by Jeremy Zerr Blog: http://www.jeremyzerr.com LinkedIn: http://www.linkedin.com/in/jrzerr Twitter: http://www.twitter.com/jrzerr What is AngularJS Open Source Javascript MVC/MVVM

More information

What's New in Sitecore CMS 6.4

What's New in Sitecore CMS 6.4 Sitecore CMS 6.4 What's New in Sitecore CMS 6.4 Rev: 2010-12-02 Sitecore CMS 6.4 What's New in Sitecore CMS 6.4 This document describes the new features and changes introduced in Sitecore CMS 6.4 Table

More information

Sweet Themes Are Made of This: The Magento PWA Studio

Sweet Themes Are Made of This: The Magento PWA Studio Sweet Themes Are Made of This: The Magento PWA Studio James Zetlen Frontend Architect Magento Commerce @JamesZetlen A suite of tools, standards, and top-quality ingredients for building and sharing Progressive

More information

This course is designed for web developers that want to learn HTML5, CSS3, JavaScript and jquery.

This course is designed for web developers that want to learn HTML5, CSS3, JavaScript and jquery. HTML5/CSS3/JavaScript Programming Course Summary Description This class is designed for students that have experience with basic HTML concepts that wish to learn about HTML Version 5, Cascading Style Sheets

More information

Magento Technical Guidelines

Magento Technical Guidelines Magento Technical Guidelines Eugene Shakhsuvarov, Software Engineer @ Magento 2018 Magento, Inc. Page 1 Magento 2 Technical Guidelines Document which describes the desired technical state of Magento 2

More information

CHOOSING THE RIGHT HTML5 FRAMEWORK To Build Your Mobile Web Application

CHOOSING THE RIGHT HTML5 FRAMEWORK To Build Your Mobile Web Application BACKBONE.JS Sencha Touch CHOOSING THE RIGHT HTML5 FRAMEWORK To Build Your Mobile Web Application A RapidValue Solutions Whitepaper Author: Pooja Prasad, Technical Lead, RapidValue Solutions Contents Executive

More information

Full Stack Developer with Java

Full Stack Developer with Java Full Stack Developer with Java Full Stack Developer (Java) MVC, Databases and ORMs, API Backend Frontend Fundamentals - HTML, CSS, JS Unit Testing Advanced Full Stack Developer (Java) UML, Distributed

More information

Extension user guide Cms Tree

Extension user guide Cms Tree Extension user guide Cms Tree Petar Sambolek 5th March, 2018 Table of contents Table of contents 1 Introduction 2 Installation 3 Adding a CMS page to menu 4 Add to menu options 7 Support 8 1 1. Introduction

More information

HTML version of slides:

HTML version of slides: HTML version of slides: http://people.mozilla.org/~bbirtles/pres/graphical-web-2014/ Animations can be used for more than just cat gifs. They can be used to tell stories too. Animation is essentially

More information

GOOGLE AMP EXTENSION FOR MAGENTO 2 USER GUIDE

GOOGLE AMP EXTENSION FOR MAGENTO 2 USER GUIDE 1 GOOGLE AMP EXTENSION FOR MAGENTO 2 USER GUIDE 1 2 Contents 1. Google AMP Extension for Magento 2 Overview... 3 2. How Does Google AMP Extension for Magento 2 Work?... 3 2.1 How to create and customize

More information

a Very Short Introduction to AngularJS

a Very Short Introduction to AngularJS a Very Short Introduction to AngularJS Lecture 11 CGS 3066 Fall 2016 November 8, 2016 Frameworks Advanced JavaScript programming (especially the complex handling of browser differences), can often be very

More information

MASTERS COURSE IN FULL STACK WEB APPLICATION DEVELOPMENT W W W. W E B S T A C K A C A D E M Y. C O M

MASTERS COURSE IN FULL STACK WEB APPLICATION DEVELOPMENT W W W. W E B S T A C K A C A D E M Y. C O M MASTERS COURSE IN FULL STACK WEB APPLICATION DEVELOPMENT W W W. W E B S T A C K A C A D E M Y. C O M COURSE OBJECTIVES Enable participants to develop a complete web application from the scratch that includes

More information

Knockout for APEX Dick Dral

Knockout for APEX Dick Dral + Knockout for APEX Dick Dral Agenda Introduction Knockout Knockout and APEX several demo s Conclusion About me Dick Dral Almost 30 years of Oracle 10 years self employed Presentations Blogposts: dickdral.blogspot.com

More information

Index. alt, 38, 57 class, 86, 88, 101, 107 href, 24, 51, 57 id, 86 88, 98 overview, 37. src, 37, 57. backend, WordPress, 146, 148

Index. alt, 38, 57 class, 86, 88, 101, 107 href, 24, 51, 57 id, 86 88, 98 overview, 37. src, 37, 57. backend, WordPress, 146, 148 Index Numbers & Symbols (angle brackets), in HTML, 47 : (colon), in CSS, 96 {} (curly brackets), in CSS, 75, 96. (dot), in CSS, 89, 102 # (hash mark), in CSS, 87 88, 99 % (percent) font size, in CSS,

More information

Syllabus- Java + Android. Java Fundamentals

Syllabus- Java + Android. Java Fundamentals Introducing the Java Technology Syllabus- Java + Android Java Fundamentals Key features of the technology and the advantages of using Java Using an Integrated Development Environment (IDE) Introducing

More information

Introduction to Sencha Ext JS

Introduction to Sencha Ext JS Introduction to Sencha Ext JS Olga Petrova olga@sencha.com Sales Engineer EMEA Agenda Use Case How It Works Advantages Demo Use case Ext JS a Javascript framework for building enterprise data-intensive

More information

Building mobile app using Cordova and AngularJS, common practices. Goran Kopevski

Building mobile app using Cordova and AngularJS, common practices. Goran Kopevski Building mobile app using Cordova and AngularJS, common practices Goran Kopevski Agenda What is cordova? How to choose proper JS framework Building mobile app using Cordova and AngularJS Common fails,

More information

ANGULARJS INTERVIEW QUESTIONS

ANGULARJS INTERVIEW QUESTIONS ANGULARJS INTERVIEW QUESTIONS http://www.tutorialspoint.com/angularjs/angularjs_interview_questions.htm Copyright tutorialspoint.com Dear readers, these AngularJS Interview Questions have been designed

More information

Stepic Plugins Documentation

Stepic Plugins Documentation Stepic Plugins Documentation Release 0 Stepic Team May 06, 2015 Contents 1 Introduction 3 1.1 Quiz Architecture............................................ 3 1.2 Backend Overview............................................

More information

C++ Important Questions with Answers

C++ Important Questions with Answers 1. Name the operators that cannot be overloaded. sizeof,.,.*,.->, ::,? 2. What is inheritance? Inheritance is property such that a parent (or super) class passes the characteristics of itself to children

More information

P a g e 1. Danish Technological Institute. Scripting and Web Languages Online Course k Scripting and Web Languages

P a g e 1. Danish Technological Institute. Scripting and Web Languages   Online Course k Scripting and Web Languages P a g e 1 Online Course k72853 Scripting and Web Languages P a g e 2 Title Estimated Duration (hrs) JsRender Fundamentals 2 Advanced JsRender Features 3 JavaScript SPA: Getting Started with SPA in Visual

More information

Frontend UI Training. Whats App :

Frontend UI Training. Whats App : Frontend UI Training Whats App : + 916 667 2961 trainer.subbu@gmail.com What Includes? 1. HTML 5 2. CSS 3 3. SASS 4. JavaScript 5. ES 6/7 6. jquery 7. Bootstrap 8. AJAX / JSON 9. Angular JS 1x 10. Node

More information

Financial. AngularJS. AngularJS.

Financial. AngularJS. AngularJS. Financial http://killexams.com/exam-detail/ Section 1: Sec One (1 to 50) Details:This section provides a huge collection of Angularjs Interview Questions with their answers hidden in a box to challenge

More information

Platform-Independent UI Models: Extraction from UI Prototypes and rendering as W3C Web Components

Platform-Independent UI Models: Extraction from UI Prototypes and rendering as W3C Web Components Platform-Independent UI Models: Extraction from UI Prototypes and rendering as W3C Web Components Marvin Aulenbacher, 19.06.2017, Munich Chair of Software Engineering for Business Information Systems (sebis)

More information

CS260 Intro to Java & Android 05.Android UI(Part I)

CS260 Intro to Java & Android 05.Android UI(Part I) CS260 Intro to Java & Android 05.Android UI(Part I) Winter 2015 Winter 2015 CS250 - Intro to Java & Android 1 User Interface UIs in Android are built using View and ViewGroup objects A View is the base

More information

Financial. AngularJS. AngularJS. Download Full Version :

Financial. AngularJS. AngularJS. Download Full Version : Financial AngularJS AngularJS Download Full Version : https://killexams.com/pass4sure/exam-detail/angularjs Section 1: Sec One (1 to 50) Details:This section provides a huge collection of Angularjs Interview

More information

FRONTEND CANCEL ORDER FOR MAGENTO 2

FRONTEND CANCEL ORDER FOR MAGENTO 2 1 User Guide Frontend Cancel Order for Magento 2 FRONTEND CANCEL ORDER FOR MAGENTO 2 USER GUIDE BSSCOMMERCE 1 2 User Guide Frontend Cancel Order for Magento 2 Contents 1. Frontend Cancel Order for Magento

More information

ANGULARJS - MOCK TEST ANGULARJS MOCK TEST II

ANGULARJS - MOCK TEST ANGULARJS MOCK TEST II http://www.tutorialspoint.com ANGULARJS - MOCK TEST Copyright tutorialspoint.com This section presents you various set of Mock Tests related to AngularJS Framework. You can download these sample mock tests

More information

CS260 Intro to Java & Android 05.Android UI(Part I)

CS260 Intro to Java & Android 05.Android UI(Part I) CS260 Intro to Java & Android 05.Android UI(Part I) Winter 2018 Winter 2018 CS250 - Intro to Java & Android 1 User Interface UIs in Android are built using View and ViewGroup objects A View is the base

More information

Simple AngularJS thanks to Best Practices

Simple AngularJS thanks to Best Practices Simple AngularJS thanks to Best Practices Learn AngularJS the easy way Level 100-300 What s this session about? 1. AngularJS can be easy when you understand basic concepts and best practices 2. But it

More information

Stencil: The Time for Vanilla Web Components has Arrived

Stencil: The Time for Vanilla Web Components has Arrived Stencil: The Time for Vanilla Web Components has Arrived Gil Fink sparxys CEO @gilfink / www.gilfink.net Typical Application Web Page Design From Design to Implementation Session List Day tabs Component

More information

Building Custom UIs for APS 2.0 Applications. Timur Nizametdinov, APS Dynamic UI Lead Developer

Building Custom UIs for APS 2.0 Applications. Timur Nizametdinov, APS Dynamic UI Lead Developer Building Custom UIs for APS 2.0 Applications Timur Nizametdinov, APS Dynamic UI Lead Developer Introducing APS 2.0 A Platform for Integration APS Dynamic UI HTML5 Extensibility Certified Services APS Service

More information

Quick Start Manual. Not2Order for Magento 2. Start here

Quick Start Manual. Not2Order for Magento 2. Start here Quick Start Manual Not2Order for Magento 2 Start here 1 Introduction Reading Introduction Congratulations on your purchase of Not2Order for Magento 2. You are almost in business! This guide provides the

More information

Integrating New Visualizations with Pentaho Using the Viz API

Integrating New Visualizations with Pentaho Using the Viz API Integrating New Visualizations with Pentaho Using the Viz API Nick Keune, Pentaho Embedded & Advanced Analytics SE, Hitachi Vantara Ben Hopkins Pentaho Senior Product Manager, Hitachi Vantara Agenda In

More information

A WEB BASED OFFICE MARKET. CS 297 Project Report Presented to Dr. Christopher Pollett San José State University

A WEB BASED OFFICE MARKET. CS 297 Project Report Presented to Dr. Christopher Pollett San José State University A WEB BASED OFFICE MARKET CS 297 Project Report Presented to Dr. Christopher Pollett San José State University By Manodivya Kathiravan May 2016 INTRODUCTION This report describes preliminary work toward

More information

Advanced Development with the ArcGIS API for JavaScript. Jeremy Bartley, Kelly Hutchins, Derek Swingley

Advanced Development with the ArcGIS API for JavaScript. Jeremy Bartley, Kelly Hutchins, Derek Swingley Advanced Development with the ArcGIS API for JavaScript Jeremy Bartley, Kelly Hutchins, Derek Swingley Agenda FeatureLayer esri.request and Identity Manager OO JS Building your first Dijit Popups Working

More information

PHP WITH ANGULAR CURRICULUM. What you will Be Able to Achieve During This Course

PHP WITH ANGULAR CURRICULUM. What you will Be Able to Achieve During This Course PHP WITH ANGULAR CURRICULUM What you will Be Able to Achieve During This Course This course will enable you to build real-world, dynamic web sites. If you've built websites using plain HTML, you realize

More information

Frontend guide. Everything you need to know about HTML, CSS, JavaScript and DOM. Dejan V Čančarević

Frontend guide. Everything you need to know about HTML, CSS, JavaScript and DOM. Dejan V Čančarević Frontend guide Everything you need to know about HTML, CSS, JavaScript and DOM Dejan V Čančarević Today frontend is treated as a separate part of Web development and therefore frontend developer jobs are

More information

SIMPLE DETAILS ON CONFIGURABLE PRODUCT FOR MAGENTO 2

SIMPLE DETAILS ON CONFIGURABLE PRODUCT FOR MAGENTO 2 1 User Guide Simple Details on Configurable Product for Magento 2 SIMPLE DETAILS ON CONFIGURABLE PRODUCT FOR MAGENTO 2 USER GUIDE BSSCOMMERCE 1 2 User Guide Simple Details on Configurable Product for Magento

More information

CUSTOM OPTION TEMPLATE FOR MAGENTO 2

CUSTOM OPTION TEMPLATE FOR MAGENTO 2 1 User Guide Custom Option Template for Magento 2 CUSTOM OPTION TEMPLATE FOR MAGENTO 2 USER GUIDE BSS COMMERCE 1 2 User Guide Custom Option Template for Magento 2 1. Custom Option Template for Magento

More information

React.js. a crash course. Jake Zimmerman January 29th, 2016

React.js. a crash course. Jake Zimmerman January 29th, 2016 React.js a crash course Jake Zimmerman January 29th, 2016 Key Features of React.js Easily express user interfaces Richly express the visual elements of a design, as well as the interactions users can

More information

HTML Advanced Portlets. Your Guides: Ben Rimmasch, Rahul Agrawal

HTML Advanced Portlets. Your Guides: Ben Rimmasch, Rahul Agrawal HTML Advanced Portlets Your Guides: Ben Rimmasch, Rahul Agrawal Introductions 2 Take 5 Minutes Turn to a Person Near You Introduce Yourself Agenda 3 HTML Portlets Overview HTML Portlet Use Cases Development

More information

Unravel. Rapid Web Application Reverse Engineering via Interaction Recording, Source Tracing, and Library Detection

Unravel. Rapid Web Application Reverse Engineering via Interaction Recording, Source Tracing, and Library Detection Unravel Rapid Web Application Reverse Engineering via Interaction Recording, Source Tracing, and Library Detection Joshua Hibschman Haoqi Zhang Inspection is Overwhelming There s a lot of code to examine

More information

Magento Extension User Guide ADMIN LINKS PREVIEW & EDIT. for Magento 2

Magento Extension User Guide ADMIN LINKS PREVIEW & EDIT. for Magento 2 Magento Extension User Guide ADMIN LINKS PREVIEW & EDIT for Magento 2 Table of Contents 1. Key Features 1.1. Edit and Preview the CMS Page 1.2. Edit and Preview the Category 1.3. Edit and Preview the Product

More information

Ten interesting features of Google s Angular Project

Ten interesting features of Google s Angular Project Ten interesting features of Google s Angular Project - 1 Ten interesting features of Google s Angular Project Copyright Clipcode Ltd 2018 All rights reserved Ten interesting features of Google s Angular

More information

Frontend Frameworks Part 2. SWE 432, Fall 2017 Design and Implementation of Software for the Web

Frontend Frameworks Part 2. SWE 432, Fall 2017 Design and Implementation of Software for the Web Frontend Frameworks Part 2 SWE 432, Fall 2017 Design and Implementation of Software for the Web Today How to make React apps interactive Handling events, state, nesting components, reconciliation, controlled

More information

Vue.js Developer friendly, Fast and Versatile

Vue.js Developer friendly, Fast and Versatile .consulting.solutions.partnership Vue.js Developer friendly, Fast and Versatile Alexander Schwartz, Principal IT Consultant Javaland 2018 Brühl (DE) March 2018 Vue.js developer friendly, fast and versatile

More information

Understanding this structure is pretty straightforward, but nonetheless crucial to working with HTML, CSS, and JavaScript.

Understanding this structure is pretty straightforward, but nonetheless crucial to working with HTML, CSS, and JavaScript. Extra notes - Markup Languages Dr Nick Hayward HTML - DOM Intro A brief introduction to HTML's document object model, or DOM. Contents Intro What is DOM? Some useful elements DOM basics - an example References

More information

Course Outline. ProTech Professional Technical Services, Inc. Comprehensive Angular 7 Course Summary. Description

Course Outline. ProTech Professional Technical Services, Inc. Comprehensive Angular 7 Course Summary. Description Course Summary Description Use Angular 7 to easily build web applications that interacts with the user by dynamically rewriting the current page rather than loading entire new pages from a server. Learn

More information

Rich Client GUI's with RCP & RAP

Rich Client GUI's with RCP & RAP Rich Client GUI's with RCP & RAP Alexey Aristov WeigleWilczek GmbH aristov@weiglewilczek.com What is Rich Client? A fat client or rich client is a computer (client) in client-server architecture networks

More information

EECS 4443 Mobile User Interfaces. More About Layouts. Scott MacKenzie. York University. Overview (Review)

EECS 4443 Mobile User Interfaces. More About Layouts. Scott MacKenzie. York University. Overview (Review) EECS 4443 Mobile User Interfaces More About Layouts Scott MacKenzie York University Overview (Review) A layout defines the visual structure for a user interface, such as the UI for an activity or app widget

More information

WPF and MVVM Study Guides

WPF and MVVM Study Guides 1. Introduction to WPF WPF and MVVM Study Guides https://msdn.microsoft.com/en-us/library/mt149842.aspx 2. Walkthrough: My First WPF Desktop Application https://msdn.microsoft.com/en-us/library/ms752299(v=vs.110).aspx

More information

Lab 1 - Setting up the User s Profile UI

Lab 1 - Setting up the User s Profile UI Lab 1 - Setting up the User s Profile UI Getting started This is the first in a series of labs that allow you to develop the MyRuns App. The goal of the app is to capture and display (using maps) walks

More information

Creating Dynamic UIs with Qt Declarative UI

Creating Dynamic UIs with Qt Declarative UI Creating Dynamic UIs with Qt Declarative UI Alex Luddy 8/25/2010 Purpose To inspire your usage of Qt s declarative UI Show how to use it Show how cool it is 1 Agenda Why Declarative UI? Examples Things

More information

GUI Design for Android Applications

GUI Design for Android Applications GUI Design for Android Applications SE3A04 Tutorial Jason Jaskolka Department of Computing and Software Faculty of Engineering McMaster University Hamilton, Ontario, Canada jaskolj@mcmaster.ca November

More information

iframe programming with jquery jquery Summit 2011

iframe programming with jquery jquery Summit 2011 iframe programming with jquery jquery Summit 2011 who invited this guy? name s ben strange last name work at disqus co-author, Third-party JavaScript disqus? dis cuss dĭ-skŭs' third-party commenting platform

More information

If you wish to make an improved product, you must already be engaged in making an inferior one.

If you wish to make an improved product, you must already be engaged in making an inferior one. Oracle JDeveloper 10g with ADF Faces and JHeadstart: Is it Oracle Forms Yet? Peter Koletzke Technical Director & Principal Instructor Survey Forms development 1-2 years? 3-9 years? More than 9 years? Designer

More information

"Charting the Course... Comprehensive Angular 6 Course Summary

Charting the Course... Comprehensive Angular 6 Course Summary Course Summary Description Build applications with the user experience of a desktop application and the ease of deployment of a web application using Angular. Start from scratch by learning the JavaScript

More information

Standard 1 The student will author web pages using the HyperText Markup Language (HTML)

Standard 1 The student will author web pages using the HyperText Markup Language (HTML) I. Course Title Web Application Development II. Course Description Students develop software solutions by building web apps. Technologies may include a back-end SQL database, web programming in PHP and/or

More information

CREATE SASSY WEB PARTS. Developer Guide to SASS usage in SPFx

CREATE SASSY WEB PARTS. Developer Guide to SASS usage in SPFx CREATE SASSY WEB PARTS Developer Guide to SASS usage in SPFx !!! WARNING!!! YOU WILL SEE SOURCE CODE!!! WARNING!!! OUR GOALS Sketch and develop web parts Create your own reusable CSS Handle external

More information

Sencha Paris Meetup Switching from Titanium to Sencha Touch: a real life example

Sencha Paris Meetup Switching from Titanium to Sencha Touch: a real life example Sencha Paris Meetup Switching from Titanium to Sencha Touch: a real life example Laurent Jolia Ferrier 12 June 2014 Foreword: I have always favoured development tools targeting several OSs with "one" code

More information

EECS 4443 Mobile User Interfaces. More About Layouts. Scott MacKenzie. York University

EECS 4443 Mobile User Interfaces. More About Layouts. Scott MacKenzie. York University EECS 4443 Mobile User Interfaces More About Layouts Scott MacKenzie York University Overview (Review) A layout defines the visual structure for a user interface, such as the UI for an activity or app widget

More information

THE NEW ERA OF WEB DEVELOPMENT. qooxdoo. Andreas Ecker, Derrell Lipman

THE NEW ERA OF WEB DEVELOPMENT. qooxdoo. Andreas Ecker, Derrell Lipman THE NEW ERA OF WEB DEVELOPMENT qooxdoo Andreas Ecker, Derrell Lipman The Ajax Experience, 25-27 July 2007 1 Introduction Client-side JavaScript framework Professional application development Comprehensive

More information

Cracked IntegralUI Studio for Web all pc software ]

Cracked IntegralUI Studio for Web all pc software ] Cracked IntegralUI Studio for Web all pc software ] Description: IntegralUI Studio for Web a suite of advanced AngularJS directives and jquery widgets. Includes following UI components: Accordion - A list

More information

GWT - UIOBJECT CLASS

GWT - UIOBJECT CLASS GWT - UIOBJECT CLASS http://www.tutorialspoint.com/gwt/gwt_uiobject_class.htm Copyright tutorialspoint.com Introduction The class UIObject is the superclass for all user-interface objects. It simply wraps

More information

What if we want the child elements to calculate the offset from the boundaries of the document? CSS LAYOUT. The position Property.

What if we want the child elements to calculate the offset from the boundaries of the document? CSS LAYOUT. The position Property. What if we want the child elements to calculate the offset from the boundaries of the document? CSS LAYOUT The position Property Manesh Jhawar According to W3Schools, The position property specifies the

More information

Extending Blue Ocean Keith Zantow

Extending Blue Ocean Keith Zantow Extending Blue Ocean Keith Zantow About Keith Senior Software Engineer at CloudBees, Inc. Jenkins & Blue Ocean core contributor 15+ years full-stack development Github: kzantow Intended Audience Development

More information

JavaScript Programming

JavaScript Programming JavaScript Programming Course ISI-1337B - 5 Days - Instructor-led, Hands on Introduction Today, JavaScript is used in almost 90% of all websites, including the most heavilytrafficked sites like Google,

More information

Modern and Responsive Mobile-enabled Web Applications

Modern and Responsive Mobile-enabled Web Applications Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 110 (2017) 410 415 The 12th International Conference on Future Networks and Communications (FNC-2017) Modern and Responsive

More information

Mix It Up: Visual Studio 2010 and ASP.NET 4.0. Singapore 25 March 2009

Mix It Up: Visual Studio 2010 and ASP.NET 4.0. Singapore 25 March 2009 Mix It Up: Visual Studio 2010 and ASP.NET 4.0 Singapore 25 March 2009 Mar Mix-It-Up: Visual Studio 2010 and ASP.NET 4.0 Mix 01: Future of Web Development with Visual Studio 2010 and ASP.NET 4.0 by Maung

More information

Oracle Developer Day

Oracle Developer Day Oracle Developer Day Sponsored by: Session5 Focusing on the UI Speaker Speaker Title Page 1 1 Agenda Building the User Interface UI Development Page Flow A Focus on Faces Introducing Java Server Faces

More information

Research of Mobile Applications Automated Testing Using Uiautomator. Wang Xiu Ming, Huang Xin, Li Gui Zhi, Miao Cui Ping, Shen Ning*

Research of Mobile Applications Automated Testing Using Uiautomator. Wang Xiu Ming, Huang Xin, Li Gui Zhi, Miao Cui Ping, Shen Ning* 4th International Conference on Machinery, Materials and Computing Technology (ICMMCT 2016) Research of Mobile Applications Automated Testing Using Uiautomator Wang Xiu Ming, Huang Xin, Li Gui Zhi, Miao

More information

Google Web Toolkit for quick relief of AJAX pain. Kelly Norton & Miguel Méndez

Google Web Toolkit for quick relief of AJAX pain. Kelly Norton & Miguel Méndez Google Web Toolkit for quick relief of AJAX pain. Kelly Norton & Miguel Méndez Overview the pleasure of using AJAX apps. the pain of creating them. getting some pain relief with GWT. the tutorial part.

More information

AngularJS AN INTRODUCTION. Introduction to the AngularJS framework

AngularJS AN INTRODUCTION. Introduction to the AngularJS framework AngularJS AN INTRODUCTION Introduction to the AngularJS framework AngularJS Javascript framework for writing frontend web apps DOM manipulation, input validation, server communication, URL management,

More information

Say goodbye to the pains of Ajax. Yibo

Say goodbye to the pains of Ajax. Yibo Say goodbye to the pains of Ajax Yibo DOM JavaScript XML CSS Standard Browsers: browser-specific dependencies. d Differences Complexity Exprerience: Minesweeper Google Web Toolkit make Ajax development

More information

Windows PowerShell Scripting and Toolmaking

Windows PowerShell Scripting and Toolmaking Windows PowerShell Scripting and Toolmaking 55039A; 5 Days, Instructor-led Course Description This five-day instructor-led course is intended for IT Professionals who have a working knowledge of Windows

More information

Web Programming and Design. MPT Senior Cycle Tutor: Tamara Week 2

Web Programming and Design. MPT Senior Cycle Tutor: Tamara Week 2 Web Programming and Design MPT Senior Cycle Tutor: Tamara Week 2 Plan for the next 4 weeks: Introduction to HTML tags, creating our template file Introduction to CSS and style Introduction to JavaScript

More information

GWT MOCK TEST GWT MOCK TEST I

GWT MOCK TEST GWT MOCK TEST I http://www.tutorialspoint.com GWT MOCK TEST Copyright tutorialspoint.com This section presents you various set of Mock Tests related to GWT. You can download these sample mock tests at your local machine

More information

JavaScript Fundamentals_

JavaScript Fundamentals_ JavaScript Fundamentals_ HackerYou Course Syllabus CLASS 1 Intro to JavaScript Welcome to JavaScript Fundamentals! Today we ll go over what programming languages are, JavaScript syntax, variables, and

More information

Advance Mobile& Web Application development using Angular and Native Script

Advance Mobile& Web Application development using Angular and Native Script Advance Mobile& Web Application development using Angular and Native Script Objective:- As the popularity of Node.js continues to grow each day, it is highly likely that you will use it when you are building

More information

PIMCORE TRAINING GUIDE

PIMCORE TRAINING GUIDE PIMCORE TRAINING GUIDE VERSION 1.0, MAY 2017 Table of Contents 1. Welcome to Pimcore... 3 1.1. Pimcore training offerings... 3 2. Pimcore Basic Training (2 Days)... 4 2.1. Pre-requisites... 4 2.2. Training

More information

Bestseller Products Extension

Bestseller Products Extension Bestseller Products Extension User Guide https://www.magebees.com/magento-bestseller-products-extension.html Bestseller Products Extension By Support Ticket: - http://support.magebees.com, Support Email

More information

Arjen de Blok. Senior Technical Consultant bij ICT Groep ( sinds 1995 Programmeren sinds 1990 Technologiën. Links

Arjen de Blok. Senior Technical Consultant bij ICT Groep (  sinds 1995 Programmeren sinds 1990 Technologiën. Links Arjen de Blok Senior Technical Consultant bij ICT Groep (www.ict.eu) sinds 1995 Programmeren sinds 1990 Technologiën Links Visual C++ met Microsoft Foundation Classes.NET WinForms & WPF Silverlight ASP.NET

More information

Decoupled Drupal with Angular

Decoupled Drupal with Angular Decoupled Drupal with Angular Agenda Introduction Short intro on Drupal What is decoupled and choosing the right architecture Introduction to Angular Setting up Angular development environment Demo Application

More information

12/05/2017. Geneva ServiceNow Custom Application Development

12/05/2017. Geneva ServiceNow Custom Application Development 12/05/2017 Contents...3 Applications...3 Creating applications... 3 Parts of an application...22 Contextual development environment... 48 Application management... 56 Studio... 64 Service Creator...87

More information

XAP: extensible Ajax Platform

XAP: extensible Ajax Platform XAP: extensible Ajax Platform Hermod Opstvedt Chief Architect DnB NOR ITUD Hermod Opstvedt: XAP: extensible Ajax Platform Slide 1 It s an Ajax jungle out there: XAML Dojo Kabuki Rico Direct Web Remoting

More information

Kendo UI. Builder by Progress : What's New

Kendo UI. Builder by Progress : What's New Kendo UI Builder by Progress : What's New Copyright 2017 Telerik AD. All rights reserved. July 2017 Last updated with new content: Version 2.0 Updated: 2017/07/13 3 Copyright 4 Contents Table of Contents

More information

Learn Web Development CodersTrust Polska course outline. Hello CodersTrust! Unit 1. HTML Structuring the Web Prerequisites Learning pathway.

Learn Web Development CodersTrust Polska course outline. Hello CodersTrust! Unit 1. HTML Structuring the Web Prerequisites Learning pathway. Learn Web Development CodersTrust Polska course outline Hello CodersTrust! Syllabus Communication Publishing your work Course timeframe Kick off Unit 1 Getting started with the Web Installing basic software

More information

1.1 Customize the Layout and Appearance of a Web Page. 1.2 Understand ASP.NET Intrinsic Objects. 1.3 Understand State Information in Web Applications

1.1 Customize the Layout and Appearance of a Web Page. 1.2 Understand ASP.NET Intrinsic Objects. 1.3 Understand State Information in Web Applications LESSON 1 1.1 Customize the Layout and Appearance of a Web Page 1.2 Understand ASP.NET Intrinsic Objects 1.3 Understand State Information in Web Applications 1.4 Understand Events and Control Page Flow

More information

UI Course HTML: (Html, CSS, JavaScript, JQuery, Bootstrap, AngularJS) Introduction. The World Wide Web (WWW) and history of HTML

UI Course HTML: (Html, CSS, JavaScript, JQuery, Bootstrap, AngularJS) Introduction. The World Wide Web (WWW) and history of HTML UI Course (Html, CSS, JavaScript, JQuery, Bootstrap, AngularJS) HTML: Introduction The World Wide Web (WWW) and history of HTML Hypertext and Hypertext Markup Language Why HTML Prerequisites Objective

More information