SlideShare une entreprise Scribd logo
1  sur  27
Télécharger pour lire hors ligne
The Responsive Web UI Library
Alexander Graebe
Developer Evangelist @ SAP Labs
#OpenUI5
Our Agenda
§ What is OpenUI5?
§ Sample Apps
§ Jump Start: Hello World
§ The Model-View-Controller Pattern
§ Out Of The Box Features
- Samples
§ Digging Deeper
#OpenUI5
What is OpenUI5?
§  JavaScript UI library
§  Huge number of UI controls
§  MVC, data binding, templating, …
§  Enterprise-grade
§  Most current browsers and (touch) devices
§  Responsive & adaptive design
§  Is Open Source, uses Open Source
#OpenUI5
?
#OpenUI5
#OpenUI5
Sample Apps
#OpenUI5
#OpenUI5
#OpenUI5
#OpenUI5
Not an official app…
http://localhost:8080/pacman/	

	

Quickly play and explain how pacman and ghosts are actual controls etc.
#OpenUI5
Excursion: The interplay between HTML, CSS & JS
§  HTML:
-  Tell the browser what to
display (in specific order)
§  CSS:
-  Tell the browser how (and
where) to display it
§  JavaScript:
-  Tell the browser what users
can do with it
My First Website
Check it out now.
My First Website
Check it out now.
My First Website
Check it out now.
#OpenUI5
Hands On:
http://goo.gl/BBXFrW
#OpenUI5
Jump Start: Hello World!
<!DOCTYPE html>
<html><head>
<meta http-equiv='X-UA-Compatible' content='IE=edge' />
<title>Hello OSCON</title>
<script id='sap-ui-bootstrap' type='text/javascript'
src='/sapui5/resources/sap-ui-core.js'
data-sap-ui-theme='sap_goldreflection'
data-sap-ui-libs='sap.ui.ux3'></script>
<script>
new sap.ui.ux3.Shell({
content: new sap.ui.commons.Button({text:'Hello World!'})
}).placeAt('content');
</script>
</head>
<body class='sapUiBody'>
<div id='content'></div>
</body>
</html>
#OpenUI5
MVC done right
§  Views should be easy to write, and easy to read, and easy to extend
§  Different view types and models should be there to meet everyone s
needs
#OpenUI5
MVC Example
§  Data is represented in the Model
-  Load JSON or XML via AJAX
§  Controller represents the methods that
can be implemented
-  Can modify Model & View
§  View is the UI implementation
-  Triggers Controller & can modify Model
{
"first": "John",
"last": "Doe",
"age": 16,
"sex": "M",
}
function isTeenager(person) {
// teens are between 13 and 19 years old
if(person.age > 13 && person.age < 19) {
return true;
}
return false;
}
#OpenUI5
Advanced: Data Sources
§  Formats JSON, XML and OData
supported out-of-the-box
§  Data can be gathered from various
sources
-  Every source will get an identifier
§  Sample code to consume various APIs:
-  http://jsbin.com/howoyeqoki/3/edit
#OpenUI5
Two-Way Data Binding Out Of The Box
§  Changes in the model are reflected in the
view and vice versa
§  Sample Google Map control:
http://jsbin.com/openui5-map-db/2/edit
#OpenUI5
Responsiveness out of the box
Native?
#OpenUI5
UI Controls Out Of The Box
§  UI5 provides 180+ UI elements
-  Buttons
-  Lists
-  Images
-  Tables
-  Text-Fields (e.g. Search)
-  Popups (Modals)
-  Date Picker
-  ….
#OpenUI5
Example: Lists
§  This code example shows how to
create lists:
-  http://jsbin.com/howoyeqoki/2/edit
§  Lists can have various types of list
items
-  Standard, Custom, Input, ..
§  Lists have “modes”:
-  SingleSelect, MultiSelect, Delete
#OpenUI5
Example: Images
§  This code example shows how to
insert and style images:
-  http://jsbin.com/gapusodabo/3/edit
§  Images can be placed in all content
fields (and as icons in lists)
§  Two approaches to insert images:
-  Add sap.m.Image to content
-  Set background image via CSS
#OpenUI5
Example: Date Picker
§  This code example shows how to
add a Date Picker:
-  http://jsbin.com/cavazojuma/2/edit
§  Input should …
-  get validated (“strict parsing”)
-  be saved into the model
#OpenUI5
Advanced: Google Maps in OpenUI5
§  This code example shows how to
create a custom UI element based
on Google Maps:
-  http://jsbin.com/zoyamekuna/4/edit
§  Implementation consists of 3
activities:
-  Define custom control
-  Create model for control API
-  Instantiate new control
#OpenUI5
Enterprise-Grade Out Of The Box
§  Extra quality assurance
§  Diagnostics (e.g. Ctrl-Alt-Shift-S popup)
§  Internationalization and right-to-left support
§  Accessibility
§  Extensibility
§  Theming
#OpenUI5
Digging deeper – The Documentation
§  Controls Overview (controls, examples and source code)
§  Demo Apps (sample apps and source code)
§  Explored (controls docs, code samples with XML views)
§  Developer Guide (how to, explanation, samples)
§  Controls API (descriptions, methods, properties)
#OpenUI5
#OpenUI5
Web: http://openui5.org
GitHub: https://github.com/SAP/openui5/	

Docs & Demos: https://openui5.hana.ondemand.com
@OpenUI5
Thank you!

Contenu connexe

Tendances

JavaScript Patterns and Principles
JavaScript Patterns and PrinciplesJavaScript Patterns and Principles
JavaScript Patterns and Principles
Aaronius
 

Tendances (11)

React django
React djangoReact django
React django
 
Intro to AngularJS
Intro to AngularJSIntro to AngularJS
Intro to AngularJS
 
Deep dive into AngularJs for Beginners
Deep dive into AngularJs for BeginnersDeep dive into AngularJs for Beginners
Deep dive into AngularJs for Beginners
 
UI5 Controls (UI5con 2016)
UI5 Controls (UI5con 2016)UI5 Controls (UI5con 2016)
UI5 Controls (UI5con 2016)
 
Mobile app development using PhoneGap - A comprehensive walkthrough - Touch T...
Mobile app development using PhoneGap - A comprehensive walkthrough - Touch T...Mobile app development using PhoneGap - A comprehensive walkthrough - Touch T...
Mobile app development using PhoneGap - A comprehensive walkthrough - Touch T...
 
Vietnam qa meetup
Vietnam qa meetupVietnam qa meetup
Vietnam qa meetup
 
Appcelerator Alloy MVC
Appcelerator Alloy MVCAppcelerator Alloy MVC
Appcelerator Alloy MVC
 
Rapid Android Development for Hackathon
Rapid Android Development for HackathonRapid Android Development for Hackathon
Rapid Android Development for Hackathon
 
Behavior Driven Development with Drupal
Behavior Driven Development with DrupalBehavior Driven Development with Drupal
Behavior Driven Development with Drupal
 
Android app development hybrid approach for beginners - Tools Installations ...
Android app development  hybrid approach for beginners - Tools Installations ...Android app development  hybrid approach for beginners - Tools Installations ...
Android app development hybrid approach for beginners - Tools Installations ...
 
JavaScript Patterns and Principles
JavaScript Patterns and PrinciplesJavaScript Patterns and Principles
JavaScript Patterns and Principles
 

En vedette

SAP for Utilities 2015 FINAL HOTLIST
SAP for Utilities 2015 FINAL HOTLISTSAP for Utilities 2015 FINAL HOTLIST
SAP for Utilities 2015 FINAL HOTLIST
Jonathan Toomey
 

En vedette (20)

SAPUI5 & OpenUI5 for SAP InnoJam
SAPUI5 & OpenUI5 for SAP InnoJamSAPUI5 & OpenUI5 for SAP InnoJam
SAPUI5 & OpenUI5 for SAP InnoJam
 
Developing Custom Controls with UI5 (OpenUI5 video lecture)
Developing Custom Controls with UI5 (OpenUI5 video lecture)Developing Custom Controls with UI5 (OpenUI5 video lecture)
Developing Custom Controls with UI5 (OpenUI5 video lecture)
 
Workshop iOS 3: Testing, protocolos y extensiones
Workshop iOS 3: Testing, protocolos y extensionesWorkshop iOS 3: Testing, protocolos y extensiones
Workshop iOS 3: Testing, protocolos y extensiones
 
Unlock The Value Of Your Microsoft and SAP Investments
Unlock The Value Of Your Microsoft and SAP InvestmentsUnlock The Value Of Your Microsoft and SAP Investments
Unlock The Value Of Your Microsoft and SAP Investments
 
Change document display
Change document displayChange document display
Change document display
 
Workshop 16: EmberJS Parte I
Workshop 16: EmberJS Parte IWorkshop 16: EmberJS Parte I
Workshop 16: EmberJS Parte I
 
CDS Unit Testing
CDS Unit TestingCDS Unit Testing
CDS Unit Testing
 
Workshop iOS 4: Closures, generics & operators
Workshop iOS 4: Closures, generics & operatorsWorkshop iOS 4: Closures, generics & operators
Workshop iOS 4: Closures, generics & operators
 
Workshop 11: Trendy web designs & prototyping
Workshop 11: Trendy web designs & prototypingWorkshop 11: Trendy web designs & prototyping
Workshop 11: Trendy web designs & prototyping
 
Multithreading 101
Multithreading 101Multithreading 101
Multithreading 101
 
Hana sql
Hana sql Hana sql
Hana sql
 
JavaScript for ABAP Programmers - 7/7 Functional Programming
JavaScript for ABAP Programmers - 7/7 Functional ProgrammingJavaScript for ABAP Programmers - 7/7 Functional Programming
JavaScript for ABAP Programmers - 7/7 Functional Programming
 
Workshop 24: React Native Introduction
Workshop 24: React Native IntroductionWorkshop 24: React Native Introduction
Workshop 24: React Native Introduction
 
Automated Testing Of Web Applications Using XML
Automated  Testing Of  Web  Applications Using  XMLAutomated  Testing Of  Web  Applications Using  XML
Automated Testing Of Web Applications Using XML
 
Python Intro
Python IntroPython Intro
Python Intro
 
SAP for Utilities 2015 FINAL HOTLIST
SAP for Utilities 2015 FINAL HOTLISTSAP for Utilities 2015 FINAL HOTLIST
SAP for Utilities 2015 FINAL HOTLIST
 
Introduction to Design Thinking
Introduction to Design ThinkingIntroduction to Design Thinking
Introduction to Design Thinking
 
Workhop iOS 1: Fundamentos de Swift
Workhop iOS 1: Fundamentos de SwiftWorkhop iOS 1: Fundamentos de Swift
Workhop iOS 1: Fundamentos de Swift
 
Workshop 12: AngularJS Parte I
Workshop 12: AngularJS Parte IWorkshop 12: AngularJS Parte I
Workshop 12: AngularJS Parte I
 
Consuming Data With HANA XS
Consuming Data With HANA XSConsuming Data With HANA XS
Consuming Data With HANA XS
 

Similaire à Getting Started with OpenUI5 (San Francisco State University)

Tech io spa_angularjs_20130814_v0.9.5
Tech io spa_angularjs_20130814_v0.9.5Tech io spa_angularjs_20130814_v0.9.5
Tech io spa_angularjs_20130814_v0.9.5
Ganesh Kondal
 
Designing and Implementing a Multiuser Apps Platform
Designing and Implementing a Multiuser Apps PlatformDesigning and Implementing a Multiuser Apps Platform
Designing and Implementing a Multiuser Apps Platform
Apigee | Google Cloud
 
2012 03 27_philly_jug_rewrite_static
2012 03 27_philly_jug_rewrite_static2012 03 27_philly_jug_rewrite_static
2012 03 27_philly_jug_rewrite_static
Lincoln III
 

Similaire à Getting Started with OpenUI5 (San Francisco State University) (20)

2022 APIsecure_Securing APIs with Open Standards
2022 APIsecure_Securing APIs with Open Standards2022 APIsecure_Securing APIs with Open Standards
2022 APIsecure_Securing APIs with Open Standards
 
Angular js
Angular jsAngular js
Angular js
 
Tech io spa_angularjs_20130814_v0.9.5
Tech io spa_angularjs_20130814_v0.9.5Tech io spa_angularjs_20130814_v0.9.5
Tech io spa_angularjs_20130814_v0.9.5
 
End-to-end testing with geb
End-to-end testing with gebEnd-to-end testing with geb
End-to-end testing with geb
 
Fuel for a great web experience
Fuel for a great web experienceFuel for a great web experience
Fuel for a great web experience
 
Stapling and patching the web of now - ForwardJS3, San Francisco
Stapling and patching the web of now - ForwardJS3, San FranciscoStapling and patching the web of now - ForwardJS3, San Francisco
Stapling and patching the web of now - ForwardJS3, San Francisco
 
jQuery mobile UX
jQuery mobile UXjQuery mobile UX
jQuery mobile UX
 
Into the Box 2018 Building a PWA
Into the Box 2018 Building a PWA Into the Box 2018 Building a PWA
Into the Box 2018 Building a PWA
 
BrowserArchitecture_ClientSide.pdf
BrowserArchitecture_ClientSide.pdfBrowserArchitecture_ClientSide.pdf
BrowserArchitecture_ClientSide.pdf
 
Designing and Implementing a Multiuser Apps Platform
Designing and Implementing a Multiuser Apps PlatformDesigning and Implementing a Multiuser Apps Platform
Designing and Implementing a Multiuser Apps Platform
 
I Love APIs - Oct 2015
I Love APIs - Oct 2015I Love APIs - Oct 2015
I Love APIs - Oct 2015
 
2012 03 27_philly_jug_rewrite_static
2012 03 27_philly_jug_rewrite_static2012 03 27_philly_jug_rewrite_static
2012 03 27_philly_jug_rewrite_static
 
BrowserArchitecture_ClientSide.pptx
BrowserArchitecture_ClientSide.pptxBrowserArchitecture_ClientSide.pptx
BrowserArchitecture_ClientSide.pptx
 
10 Useful Testing Tools for Open Source Projects @ TuxCon 2015
10 Useful Testing Tools for Open Source Projects @ TuxCon 201510 Useful Testing Tools for Open Source Projects @ TuxCon 2015
10 Useful Testing Tools for Open Source Projects @ TuxCon 2015
 
Play framework 2 : Peter Hilton
Play framework 2 : Peter HiltonPlay framework 2 : Peter Hilton
Play framework 2 : Peter Hilton
 
The Open & Social Web - Kings of Code 2009
The Open & Social Web - Kings of Code 2009The Open & Social Web - Kings of Code 2009
The Open & Social Web - Kings of Code 2009
 
Effective Android Development
Effective Android Development Effective Android Development
Effective Android Development
 
Don't screw it up! How to build durable API
Don't screw it up! How to build durable API Don't screw it up! How to build durable API
Don't screw it up! How to build durable API
 
User Experience Bootcamp for Developers
User Experience Bootcamp for DevelopersUser Experience Bootcamp for Developers
User Experience Bootcamp for Developers
 
Sync Workitems between multiple Team Projects #vssatpn
Sync Workitems between multiple Team Projects #vssatpnSync Workitems between multiple Team Projects #vssatpn
Sync Workitems between multiple Team Projects #vssatpn
 

Dernier

Dernier (20)

TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 

Getting Started with OpenUI5 (San Francisco State University)

  • 1. The Responsive Web UI Library Alexander Graebe Developer Evangelist @ SAP Labs
  • 2. #OpenUI5 Our Agenda § What is OpenUI5? § Sample Apps § Jump Start: Hello World § The Model-View-Controller Pattern § Out Of The Box Features - Samples § Digging Deeper
  • 3. #OpenUI5 What is OpenUI5? §  JavaScript UI library §  Huge number of UI controls §  MVC, data binding, templating, … §  Enterprise-grade §  Most current browsers and (touch) devices §  Responsive & adaptive design §  Is Open Source, uses Open Source
  • 10. #OpenUI5 Not an official app… http://localhost:8080/pacman/ Quickly play and explain how pacman and ghosts are actual controls etc.
  • 11. #OpenUI5 Excursion: The interplay between HTML, CSS & JS §  HTML: -  Tell the browser what to display (in specific order) §  CSS: -  Tell the browser how (and where) to display it §  JavaScript: -  Tell the browser what users can do with it My First Website Check it out now. My First Website Check it out now. My First Website Check it out now.
  • 13. #OpenUI5 Jump Start: Hello World! <!DOCTYPE html> <html><head> <meta http-equiv='X-UA-Compatible' content='IE=edge' /> <title>Hello OSCON</title> <script id='sap-ui-bootstrap' type='text/javascript' src='/sapui5/resources/sap-ui-core.js' data-sap-ui-theme='sap_goldreflection' data-sap-ui-libs='sap.ui.ux3'></script> <script> new sap.ui.ux3.Shell({ content: new sap.ui.commons.Button({text:'Hello World!'}) }).placeAt('content'); </script> </head> <body class='sapUiBody'> <div id='content'></div> </body> </html>
  • 14. #OpenUI5 MVC done right §  Views should be easy to write, and easy to read, and easy to extend §  Different view types and models should be there to meet everyone s needs
  • 15. #OpenUI5 MVC Example §  Data is represented in the Model -  Load JSON or XML via AJAX §  Controller represents the methods that can be implemented -  Can modify Model & View §  View is the UI implementation -  Triggers Controller & can modify Model { "first": "John", "last": "Doe", "age": 16, "sex": "M", } function isTeenager(person) { // teens are between 13 and 19 years old if(person.age > 13 && person.age < 19) { return true; } return false; }
  • 16. #OpenUI5 Advanced: Data Sources §  Formats JSON, XML and OData supported out-of-the-box §  Data can be gathered from various sources -  Every source will get an identifier §  Sample code to consume various APIs: -  http://jsbin.com/howoyeqoki/3/edit
  • 17. #OpenUI5 Two-Way Data Binding Out Of The Box §  Changes in the model are reflected in the view and vice versa §  Sample Google Map control: http://jsbin.com/openui5-map-db/2/edit
  • 19. #OpenUI5 UI Controls Out Of The Box §  UI5 provides 180+ UI elements -  Buttons -  Lists -  Images -  Tables -  Text-Fields (e.g. Search) -  Popups (Modals) -  Date Picker -  ….
  • 20. #OpenUI5 Example: Lists §  This code example shows how to create lists: -  http://jsbin.com/howoyeqoki/2/edit §  Lists can have various types of list items -  Standard, Custom, Input, .. §  Lists have “modes”: -  SingleSelect, MultiSelect, Delete
  • 21. #OpenUI5 Example: Images §  This code example shows how to insert and style images: -  http://jsbin.com/gapusodabo/3/edit §  Images can be placed in all content fields (and as icons in lists) §  Two approaches to insert images: -  Add sap.m.Image to content -  Set background image via CSS
  • 22. #OpenUI5 Example: Date Picker §  This code example shows how to add a Date Picker: -  http://jsbin.com/cavazojuma/2/edit §  Input should … -  get validated (“strict parsing”) -  be saved into the model
  • 23. #OpenUI5 Advanced: Google Maps in OpenUI5 §  This code example shows how to create a custom UI element based on Google Maps: -  http://jsbin.com/zoyamekuna/4/edit §  Implementation consists of 3 activities: -  Define custom control -  Create model for control API -  Instantiate new control
  • 24. #OpenUI5 Enterprise-Grade Out Of The Box §  Extra quality assurance §  Diagnostics (e.g. Ctrl-Alt-Shift-S popup) §  Internationalization and right-to-left support §  Accessibility §  Extensibility §  Theming
  • 25. #OpenUI5 Digging deeper – The Documentation §  Controls Overview (controls, examples and source code) §  Demo Apps (sample apps and source code) §  Explored (controls docs, code samples with XML views) §  Developer Guide (how to, explanation, samples) §  Controls API (descriptions, methods, properties)
  • 27. #OpenUI5 Web: http://openui5.org GitHub: https://github.com/SAP/openui5/ Docs & Demos: https://openui5.hana.ondemand.com @OpenUI5 Thank you!