<Insert Picture Here>



Similar documents
Over mij. 17 jaar 17 jaar 2 jaar. 1 week

Responsive Web Design in Application Express

THE SAS OUTPUT DELIVERY SYSTEM: BOLDLY TAKE YOUR WEB PAGES WHERE THEY HAVE NEVER GONE BEFORE! CHEVELL PARKER, SAS INSTITUTE INC.

Designing for the Mobile Web Lesson 3: HTML5 Web Apps

Making the Most of Existing Public Web Development Frameworks WEB04

Republic Polytechnic School of Infocomm C308 Web Framework. Module Curriculum

Grab Your Tablet, Because You re Gonna Build A Mobile Apex App in One Hour!

Responsive Web Design. birds of feather

Developing Mobile Websites with Responsive Web Design and jquery Mobile

max firt.mobi martes 26 de julio de 11

Sizmek Formats. IAB Mobile Pull. Build Guide

<Insert Picture Here>

Mobile Web Design with HTML5, CSS3, JavaScript and JQuery Mobile Training BSP-2256 Length: 5 days Price: $ 2,895.00

JTouch Mobile Extension for Joomla! User Guide

Mobile Web Applications using HTML5. L. Cotfas 14 Dec. 2011

Going Beyond SAP ITS Mobile Apps to a Responsive Design Mobile Apps. JK (JayaKumar Pedapudi) Principal Consultant NTT DATA, Inc.

Responsive Web Design (RWD) Best Practices Guide Version:

Designing for Mobile Devices

Developing Exceptional Mobile and Multi-Channel Applications using IBM Web Experience Factory IBM Corporation 1

Magic Liquidizer Documentation

Quick Start Guide Mobile Entrée 4

Developing Exceptional Mobile and Multi-Channel Applications using IBM Web Experience Factory

CiviMobile & CiviSync Mobile. Peter McAndrew Rohit Thakral

Principles of Web Design 6 th Edition. Chapter 12 Responsive Web Design

Site Configuration Mobile Entrée 4

Top 10 Oracle SQL Developer Tips and Tricks

Ad Specifications and Guidelines

Responsive Web Design. vs. Mobile Web App: What s Best for Your Enterprise? A WhitePaper by RapidValue Solutions

Web Designing with UI Designing

<Insert Picture Here> Oracle Application Express 4.0

IBM Worklight: Responsive Design for Mul8- Channel Applica8on Development

WompMobile Technical FAQ

Developing Cross-platform Mobile and Web Apps

Responsive Web Design for Teachers. Exercise: Building a Responsive Page with the Fluid Grid Layout Feature

DreamFactory & Modus Create Case Study

Statement of Direction

Project Proposal. Developing modern E-commerce web application via Responsive Design

Sage CRM. Sage CRM 2016 R1 Mobile Guide

BUILDING MOBILE WEB APPS WITH PHONEGAP. Matt Zukowski

Lee Barnes, CTO Utopia Solutions. Utopia Solutions

Course Information Course Number: IWT 1229 Course Name: Web Development and Design Foundation

Responsive Design Best Practices

place/business fetch details, removefromfavorite () function, 189 search button handler bind, B BlackBerry build environment

Kentico CMS, 2011 Kentico Software. Contents. Mobile Development using Kentico CMS 6 2 Exploring the Mobile Environment 1

Responsive Web Design Creative License

Development of mobile applications for multiple platforms

CREATING RESPONSIVE UI FOR WEB STORE USING CSS

Beginning Smartphone Web Development

Building Web Applications

CHOOSING THE RIGHT HTML5 FRAMEWORK To Build Your Mobile Web Application

Mobile Communicator for Mobile Devices

Sage CRM. Sage CRM 7.3 Mobile Guide

Building a Simple Mobile optimized Web App/Site Using the jquery Mobile Framework

Optimizing your E-Business Suite for Mobile and Tablet

A GUIDE TO MOBILE

Web. Programming. Hans- Pe0er Halvorsen, M.Sc. h0p://home.hit.no/~hansha/?page=sojware_development

ON24 MOBILE WEBCASTING USER GUIDE AND FAQ FEBRUARY 2015

FUNCTIONAL OVERVIEW VERSION: 1.0

An Oracle White Paper May Creating Custom PDF Reports with Oracle Application Express and the APEX Listener

Unlocking the Java EE Platform with HTML 5

Enterprise Mobile Application Development: Native or Hybrid?

HYBRID APPLICATION DEVELOPMENT IN PHONEGAP USING UI TOOLKITS

Fast track to HTML & CSS 101 (Web Design)

RESPONSIVE WEB DESIGN

Cross-Platform Mobile Application Development

Cross-Platform Phone Apps & Sites with jquery Mobile

50 shades of Siebel mobile

INSTRUCTOR HELP & WALKTHROUGH

Responsive Web Design: Single Design for multiple devices - A case with UNISWA Library website. John Paul Anbu K.

RESPONSIVE DESIGN FOR MOBILE RENDERING

INFORMATION TECHNOLOGY STANDARD

J j enterpririse. Oracle Application Express 3. Develop Native Oracle database-centric web applications quickly and easily with Oracle APEX

Themes and Templates Manual FOR ADVANCED USERS

OPENTABLE GROUP SEARCH MODULE GETTING STARTED ADD RESERVATIONS TO YOUR WEBSITE

Mobile Web Site Style Guide

Recommendations for Websites Optimization for Mobile Devices Using Mobile Centric CSS. February 2014 Update

Mobility Introduction Android. Duration 16 Working days Start Date 1 st Oct 2013

HTML5 & Digital Signage

Building Responsive Websites with the Bootstrap 3 Framework

CLASSROOM WEB DESIGNING COURSE

SYST35300 Hybrid Mobile Application Development

Master Mobile Web Apps with jquery Mobile

Study on Parallax Scrolling Web Page Conversion Module

Transcription:

<Insert Picture Here>

<Insert Picture Here> Oracle Application Express: Mobile User Interfaces Marc Sewtz Senior Software Development Manager Oracle Application Express Oracle USA Inc. 520 Madison Avenue, New York, NY 10022 marc.sewtz@oracle.com

The following is intended to outline Oracle s general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment to deliver any material, code, or functionality, and should not be relied upon in making purchasing decisions. The development, release, and timing of any features or functionality described for Oracle s products remain at the sole discretion of Oracle.

Agenda Overview Mobile Applications in APEX jquery Mobile Introduction Infrastructure Changes Table-less Forms Field Containers Mobile Page Templates Wizards to Create Mobile Components Building a Mobile Application

Mobile Applications in Oracle Application Express

Mobile Applications in APEX Any APEX application works on modern mobile devices, like iphone, ipad, Android etc However standard applications may not be ideal for smaller screen size APEX will provide mobile enabled theme based on jquery Mobile Mobile themes provide a more native user experience Optimized for mobile screens and touch interfaces

Mobile Applications in APEX APEX themes can be extended with mobile templates Allowing for applications to include a mix of mobile and full-size pages Dependent on browser type (standard / mobile), user can be redirected to full-size page or mobile page Subset of APEX components optimized for mobile use

jquery Mobile Touch-Optimized web framework for smartphones & tablets Unified user interface system across all popular mobile device platform Built on jquery and jquery UI foundation Flexible, easily theme-able design

jquery Mobile Custom Events tap taphold swipe (left/right) scroll (start/stop) orientationchange

jquery Mobile Wide variety of platforms targeted: Apple ios Android Blackberry Palm WebOS Windows Phone 7 Opera Mobile & Mini Firefox Mobile

jquery Mobile Build on foundation of clean, semantic HTML Use of HTML5 custom attributes: data-* HTML5 Markup-driven configuration of pages and behavior for fast development and minimal required scripting Accessibility features such as WAI-ARIA are tightly integrated

jquery Mobile - Progressive enhancement Progressive enhancement Brings core content and functionality to all mobile, tablet and desktop platforms Rich, installed application-like experience on newer mobile platforms Basic but functional experience on older and less capable devices

jquery Mobile HTML5 Document <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>jquery Mobile Page</title> </head> <body> </body> </html>

jquery Mobile CSS and JavaScript <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>jquery Mobile Page</title> <link rel="stylesheet" href="/jquery.mobile.min.css" /> <script type="text/javascipt" src="/jquery.js"> <script type="text/javascript" src="/jquery.mobile.min.js" /> </head>

jquery Mobile data-role= page <body> <div data-role="page"> <!-- jquery Mobile page content goes here --> </div><!-- /page --> </body>

jquery Mobile Page data-roles <body> <div data-role="page"> <div data-role="header"> </div><!-- /header --> <div data-role="content"> </div><!-- /content --> <div data-role="footer"> </div><!-- /footer --> </div><!-- /page --> </body>

jquery Mobile Template <!DOCTYPE html> <html> <head> <title>page Title</title> <link rel="stylesheet" href="../jquery.mobile.css" /> <script type="text/javascript" src="../jquery.js"></script> <script type="text/javascript" src="../jquery.mobile.js"></script> </head> <body> <div data-role="page"> <div data-role="header"> <h1>page Title</h1> </div><!-- /header --> <div data-role="content"> <p>page content goes here.</p> </div><!-- /content --> <div data-role="footer"> <h4>page Footer</h4> </div><!-- /footer --> </div><!-- /page --> </body> </html>

jquery Mobile Multi-Page Documents <body> <div data-role="page" id="home"> </div><!-- /home page --> <div data-role="page" id="products"> </div><!-- /products page --> <div data-role="page" id="services"> </div><!-- /home page --> <div data-role="page" id="about"> </div><!-- /home page --> <div data-role="page" id="contact"> </div><!-- /home page --> </body>

jquery Mobile Responsive Layout Orientation Classes: HTML elements provide class of portrait and landscape, depending on orientation of device Min/Max Width Breakpoint Classes: 320, 480, 768, 1024 Used by many components, e.g. in case of form elements, used to float labels besides or above elements Customizable via API: $.mobile.addresolutionbreakpoints Media Queries using CSS Test for screen media type, min/width, ios retina, etc

jquery Mobile - Transitions Page Transitions CSS-based transition effects (from jqtouch) slide, slideup, slidedown, pop, fade, flip Used when navigating to new page Reverse transition for back button Content loaded via AJAX into DOM of current page

jquery Mobile - Nested Lists Drillable Pages

jquery Mobile Rich theming system Full control over page style data-theme attribute to select lettered theme color swatches (A-E)

Infrastructure Changes in Oracle Application Express <Insert Picture Here>

Table-less Forms Form regions in APEX are typically rendered in a HTML table grid to allow for a flexible form layout Many frameworks, such as jquery Mobile require a specific HTML structure when rendering form elements APEX 4.1 allows for rendering form regions without an HTML table The table-less form layout is triggered by using a mobile page templates Non-mobile applications can also take advantage of this feature on a per region basis, controlled by the region template

Field Containers APEX form items generally include a label Customizable via label templates Label templates now support field containers, i.e. HTML that encloses label and item Added support for label templates to tabular forms Use label templates to generate jquery Mobilecompliant form element syntax: <div data-role="fieldcontain"> <label for="name">text Input:</label> <input type="text" name="name" id="name" value="" /> </div>

Mobile Page Templates Page templates provide page mode selector: Standard Browser Mobile Browser Mobile-enabled page templates include jquery Mobile Java Script and CSS Omit Java Script and CSS not needed for mobile When creating pages and components for page using mobile templates, only mobile-enabled options are shown

Wizards to Create Mobile Components Create page wizard shows mobile option for applications that have a mobile page template defined Region wizard automatically shows mobile option when used on page using mobile template Selecting mobile reduces available components to those that are optimized for mobile experience Wizard selects default mobile templates for regions, reports, etc based on mobile defaults in theme attributes

D E M O N S T R A T I O N Building a Mobile Application

Information: http://otn.oracle.com/apex Hosted Development: http://apex.oracle.com APEX 4.1 Early Adopter http://tryapexnow.com