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

Size: px
Start display at page:

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

Transcription

1 THE SAS OUTPUT DELIVERY SYSTEM: BOLDLY TAKE YOUR WEB PAGES WHERE THEY HAVE NEVER GONE BEFORE! CHEVELL PARKER, SAS INSTITUTE INC. Copyright 2012, SAS Institute Inc. All rights reserved.

2 Overview Mobile technology and web applications Web content across mobile and desktop devices (CSS and HTML advancements) Web content for desktop applications

3 Mobile Technology and Web Applications The melding of mobile technology and web applications has created a revolution, but with it come challenges: generating output on mobile devices optimizing mobile output for the web generating applications for mobile devices

4 Generating Output on Mobile Devices Creating output on mobile devices comes with a number of issues to consider. Output needs to be accessible from a desktop as well as from mobile devices. Pages need to render on all devices efficiently with a consistent look and feel. Pages and images should load quickly on all mobile browsers. The viewport and screen sizes on mobile devices have limitations. The display format needs to account for phones and tablets that use dual orientation. Fonts that you can access on a desktop machine are not always available on mobile devices.

5 Optimizing Mobile Output The Viewport <meta> Tag Enables you to set up a web page for cross-device layout Is used by most major browsers (it was introduced originally by Apple Inc.) Is the single-most important change for mobile devices Should be added for devices that are less than 980px in width Is added to the header of the HTML file

6 Optimizing Mobile Output (continued) Setting the Viewport <meta name="viewport" content="width=320"> <meta name="viewport" content= device-width"> Viewport default width=980px <meta name="viewport" content= initial-scale=1">

7 Width=480px Optimizing Mobile Output (continued) Before After Viewport=980px ods html file="temp.html" metatext='name="viewport" content="width=devicewidth"; width=320px proc print data=sashelp.class; title "ODS Output Using Viewport Information"; ods html close;

8 Optimizing Mobile Output (continued) The jquery Mobile framework offers the following benefits: You can create touch-based events that are designed for mobile devices. Applications and web content generated with jquery are compatible across major mobile, tablet, and desktop platforms. The framework is driven by HTML5 markup, which enables faster development. Output appearance scales across devices. Accessibility features such as WAI-ARIA ensure pages work with screen readers. The framework provides unified user-interface widgets and theming. You can access jquery Mobile via the Microsoft Content Delivery Network or you can download it from jquerymobile.com/download/.

9 Optimizing Mobile Output (continued) Mobile Page Structure Viewport tag <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href=" min.css" /> <script src=" <script src=" min.js"></script> </head> <body> <div data-role="page"> <div data-role="header">...more lines...</div> <!-- /header --> <div data-role="content">...more lines...</div><!-- /content --> <div data-role="footer">...more lines...</div> <!-- /footer --> </div><!-- /page --> </body> </html> Hosted CSS and script Page layout

10 SAS ODS Markup Language and jquery Mobile Framework Layouts UI Events ODS MARKUP + jquery Mobile Headers/ Footers Transitions Icons Themes

11 SAS ODS Markup Language and jquery Mobile Framework (continued) The ODS markup language enables you to create customized output. ODS is the perfect tool to interface with the jquery Mobile framework. An available sample ODS tagset (called jquerymobile) contains features that drive the framework. Download the jquerymobile tagset from support.sas.com/rnd/base/ods/odsmarkup/index.html.

12 jquerymobile Tagset: Page Layout ods tagsets.jquerymobile file="c:\temp.html" options(data_role="page"); proc print data=sashelp.prdsale; proc report data=sashelp.class nowd; ods tagsets.jquerymobile close;

13 jquerymobile Tagset: Collapsible Layout ods tagsets.jquerymobile file="temp.html" options(data_role="collapsible") proc report data=sashelp.prdsale nowd; proc print data=sashelp.class; proc freq data=sashelp.prdsale; proc univariate data=sashelp.class;...more procedure steps... ods tagsets.jquerymobile close;

14 jquerymobile Tagset: Collapsible Layout ods tagsets.jquerymobile file="temp.html" options(data_role="collapsible" header="report Of Earnings" footer="summary Report" data_mini="yes" data_corners="yes" data_iconpos="right" data_expanded_icon="arrow-l" data_collapsed_icon="arrow-r" footer_icons="forward,back,grid,delete"); proc report data=sashelp.prdsale nowd; proc print data=sashelp.prdsale noobs;;...more procedure steps... ods tagsets.jquerymobile close;

15 jquerymobile Tagset: Listview Layout ods tagsets.jquerymobile file="temp.html" contents="contents.html" options(data_role="listview") proc report data=sashelp.prdsale nowd; proc print data=sashelp.prdsale noobs; by age; proc freq data=sashelp.prdsale; tables age height;...more procedure steps... ods tagsets.jquerymobile close;

16 jquerymobile Tagset: Tab Layout ods tagsets.jquerymobile file="temp.html" options(web_tabs= "Sales,Revenue,Profit"); proc print data=sashelp.prdsale; proc report data=sashelp.prdsale nowd;...more procedure steps... ods tagsets.jquerymobile close;

17 jquerymobile Tagset: Themes ods ods tagsets.jquerymobile tagsets.jquerymobile file="theme.html" file="theme.html" options(data_role="collapsible" options(data_role="collapsible" data_theme="b" data_theme="e" data_theme="c" data_theme="d" data_theme="a" header="report footer="summary Of Report"); Earnings" ods tagsets.jquerymobile footer="summary Report"); options(data_content_theme="a"); data_theme="e" proc report data=sashelp.prdsale nowd; proc report data=sashelp.prdsale nowd; proc print data=sashelp.prdsale noobs; ods tagsets.jquerymobile options(data_content_theme="b"); proc freq data=sashelp.prdsale; proc print data=sashelp.prdsale noobs; ods tagsets.jquerymobile close; ods tagsets.jquerymobile close;

18 Mobile Applications: Calling Native Applications data one; infile cards ; input Address $1-23 Message $ $39-57 Mobile $59-72; cards; 400 Broad St, Durham NC Please contact realty@company.com Duke St, Durham NC Please contact sunreal@company.com th St, Durham NC Please contact libreal@company.com ;

19 Mobile Applications: Calling Native Applications ods html file="native.html" style=htmlblue metatext='name="viewport" content="width=device-width"'; proc report data=one nowd; title "Real Estate Showing and Contact Information"; column address message mobile; compute mobile; call define('mobile',"url",cat("tel:",mobile)); call define('message',"url",cat("sms:",mobile)); call define(' ',"url",cat("mailto:", ,"?body=",message)); call define('address',"url",cat(" endcomp; ods html close;

20 Mobile Applications: Calling Native Applications (continued)

21 Web Applications: Integrating Google Maps ods html file="mapapi.html" style=htmlblue metatext='name="viewport" content="width=device-width"'; proc report data=one nowd; column address message mobile; compute mobile; urlstring=" trim(left(address)) '&zoom=14&size=400x400& sensor=false'; call define(_col_,"url",urlstring); endcomp; ods html close;

22 Web Applications: Using the Google Geolocation API to Determine Location Checks browser support Passes the object

23 Web Applications: Using the Google Geolocation API to Determine Location (continued) "

24 CSS and HTML Advancements CSS3 style enhancements CSS3 media queries for detecting devices The new HTML standard ODS enhancements for HTML in SAS 9.4

25 CSS Style Enhancements CSS3 and HTML5 introduce features that previously were available only in desktop publishing applications. The enhancements include the following capabilities: o o o generating animation, gradients, font shadows, and rounded borders rotating text and objects using media queries to detect a particular device Only some of the many new features are supported by browsers.

26 CSS3 Style Enhancements proc template; define style styles.test; parent=styles.htmlblue; class class header body / prehtml="<span prehtml="<div style=""-ms-transform:rotate(30deg); style=""-ms-transform:rotate(30deg)"">" posthtml="</span>"; border:2px solid; class body / pretext="<div box-shadow: 10px 10px 5px #888888"">"; style=""filter:progid:dximagetransform.microsoft.gradient(sta rtcolorstr='#dddddd', posthtml="</div>"; endcolorstr='#000000');"">" end; posttext="</div>"; end; ods html5 file="c:\temp.html" style=styles.test; ods html5 file="c:\temp.html" style=styles.test; proc print data=sashelp.class; proc print data=sashelp.class; title; ods html5 close; ods html5 close;

27 CSS3 Media Queries for Detecting Devices A CSS3 media query enables you to communicate with a device. The query is an alternative to JavaScript for customizing applications based on device. Media queries consist of a media type and an expression that checks for a condition. Expressions can include width, height, device width, orientation, color, resolution, and other parameters. One of the common uses of a media query is to check a device's width using break points. You can use a combination of the expressions in a style sheet to apply styles.

28 CSS3 Media Queries for Detecting Devices (continued) Device Resolution Device-Width/Device-Height iphone 320 X X480, in both portrait and landscape mode iphone X X 480, in both portrait and landscape mode CSS pixel density is 2 ipad1 and ipad2 769 X X1024 in both portrait and landscape ipad X X1024, in both portrait and landscape mode CSS pixel density is X 533, in portrait mode Samsung Galaxy S I and II 480 X 800 CSS Pixel density 1.5 Samsung Galaxy S III 720 X X 640, in portrait mode

29 CSS3 Feature: Media Queries for Detecting Devices (continued) /* Adjust width for an ipad in landscape */ /* /* mode Mobile Tablets: /* and Phones: Desktops change Portrait Portrait background */ Landscape or Landscape color. screen screen and (min-device-width: and (min-width: 1024px) only screen screen { and (max-device-width: 640px) and { (min-device-width backgound-color-green; and (max-device-width: : 768px) 1024px) and background-color:green; (max-device-width } : 1024px) and } { (orientation : landscape) { background-color:green; {body:background-color:green} } }

30 The New HTML5 Standard HTML5 is still a work in progress, but many browsers support parts of it. HTML5 was created to overcome the limitations of HTML and XHTML. This standard reduces the need for third-party tools and JavaScript. The standard is promoted by companies such as Google and Apple. New HTML5 features are based on HTML, CSS, the document object model (DOM), and JavaScript. HTML5 revolutionizes the way web pages are used.

31 The New HTML5 Standard (continued) New elements such as the <section>, <article>, <header>, and <footer> tags help you to better organize pages. The new <canvas> tag enables you to draw graphics dynamically. HTML5 is device independent. More APIs are included for both audio and video. HTML5 supports the following: o o o embedded Scalable Vector Graphics (SVG) files the Geolocation API drag-and-drop capability

32 Desktop Applications: Overview Modifying printed output Exporting Microsoft Excel pivot tables that contain visual displays Adding computed fields to pivot tables that are exported from the web

33 Modifying Printed Output Repeating column headers across printed web pages Removing page breaks from output Adding styles only to the printed output

34 Repeating Column Headers across Printed Web Pages ods html file="temp.html" headtext='<style>thead {display:table-header-group} </style>'; proc print data=sashelp.prdsale; ods html close;

35 Removing Page Breaks From Output ods html file='nobreak.html' options(pagebreak='no'); proc print data=sashelp.class; proc print data=sashelp.class; ods html close;

36 Adding Styles Only to the Printed print { *{ font-family:times,serif;color:red;} } Viewed in the Browser Printed Output ods html file="c:\temp.html" stylesheet=(url="c:\print.css"); proc print data=sashelp.prdsale(obs=10); title "Using Rule"; footnote; ods html close;

37 Exporting Microsoft Excel Pivot Tables That Contain Visual Displays Using the sample tableeditor tagset, you can export a Microsoft Excel pivot table from Windows Internet Explorer. Download the tagset from the SAS Customer Support site: support.sas.com/rnd/base/ods/odsmarkup/index.html You can add data-visualization features (such as data bars, icons, or color scale output) to your tables.

38 Exporting Microsoft Excel Pivot Tables That Contain Visual Displays (continued) ods tagsets.tableeditor file="temp.html" options(format_condition="databar,2-9" pivotrow="product_category" pivotcol="quarter" pivotdata="profit" pivotdata_caption="profit Analysis" pivot_grandtotal="no"); proc print data=sashelp.orsales; where quarter in("1999q1","1999q2","1999q3","1999q4", "2000Q1","2000Q2","2000Q3","2000Q4"); ods tagsets.tableeditor close;

39 Adding Computed Fields to Pivot Tables ods tagsets.tableeditor file="temp.html" options(addfield="returns =Profit*.05,Actual_profit =Profit*1.05" pivotdata="profit,returns,actual_profit" pivotrow="product_category" pivotdata_fmt="#,###,##" pivotdata_caption="gross_profit,return_amount,net_profit" pivotdata_tocolumns="yes" format_condition=",colorscale,4" pivot_grandtotal="no"); proc print data=sashelp.orsales; ods tagsets.tableeditor close;

40 ODS Enhancements for HTML in SAS 9.4 The new ODS Destinations for SAS 9.4 ODS HTML5 ODS EPUB ODS POWERPOINT ODS Layout and the Report Writing Interface New ODS Procedures for SAS 9.4 PROC ODSTABLE PROC ODSLIST PROC ODSTEXT

41 ODS Enhancements for HTML in SAS 9.4 Includes the new HTML5 destination Includes new elements such as the <Header>, <Article>, and <section> tags Provides the ability to create embedded SVG files with HTML5 Provides a face-lift to the style that is used with the HTML destinations

42 ODS Enhancements for HTML in SAS 9.4 (continued) SVG File goptions device=svg; ods html5 options(svg_mode='embed'); title "Actual sales versus predicted"; proc gplot data=sashelp.prdsale; plot actual*predict; quit; ods html5 close;

43 The ODS EPUB and EPUB2 Destinations Create files that are stored in an electronic book format (EPUB) Are open-file formats for electronic books, newspapers, and magazines Enable you to view content on the Amazon Kindle, Barnes & Noble Nook, and Apple ibook for the iphone and the ipad Enable you to store fonts that you want to use for viewing files Are available beginning with SAS 9.4

44 The ODS EPUB and EPUB2 Destinations (continued) ods epub file="temp.epub" title="sales Report" newchapter=output options(contents="yes"); proc print data=sashelp.prdsale(obs=50); proc report data=sashelp.orsales(obs=50) nowd; ods epub close;

45 ODS Layout or SAS 9.4

46 Contact Information

<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,

More information

Designing for the Mobile Web Lesson 3: HTML5 Web Apps

Designing for the Mobile Web Lesson 3: HTML5 Web Apps Designing for the Mobile Web Lesson 3: HTML5 Web Apps Michael Slater, CEO Andrew DesChenes, Dir. Services course-support@webvanta.com 888.670.6793 www.webvanta.com Welcome! Four sessions 1: The Mobile

More information

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

Mobile Web Design with HTML5, CSS3, JavaScript and JQuery Mobile Training BSP-2256 Length: 5 days Price: $ 2,895.00 Course Page - Page 1 of 12 Mobile Web Design with HTML5, CSS3, JavaScript and JQuery Mobile Training BSP-2256 Length: 5 days Price: $ 2,895.00 Course Description Responsive Mobile Web Development is more

More information

Viewports. Peter-Paul Koch http://quirksmode.org http://twitter.com/ppk jquery EU, 28 February 2014

Viewports. Peter-Paul Koch http://quirksmode.org http://twitter.com/ppk jquery EU, 28 February 2014 Viewports Peter-Paul Koch http://quirksmode.org http://twitter.com/ppk jquery EU, 28 February 2014 or: Why responsive design works Peter-Paul Koch http://quirksmode.org http://twitter.com/ppk jquery EU,

More information

Web Designing with UI Designing

Web Designing with UI Designing Dear Student, Based upon your enquiry we are pleased to send you the course curriculum for Web Designing Given below is the brief description for the course you are looking for: Web Designing with UI Designing

More information

Responsive Web Design Creative License

Responsive Web Design Creative License Responsive Web Design Creative License Level: Introduction - Advanced Duration: 16 Days Time: 9:30 AM - 4:30 PM Cost: 2197 Overview Web design today is no longer just about cross-browser compatibility.

More information

HTML5 & CSS3. ( What about SharePoint? ) presented by @kyleschaeffer

HTML5 & CSS3. ( What about SharePoint? ) presented by @kyleschaeffer HTML5 & CSS3 ( What about SharePoint? ) presented by @kyleschaeffer The Agenda HTML5 What is it? What can it do? Does SharePoint do HTML5? CSS3 What is it? What can it do? Does SharePoint do CSS3? HTML5

More information

Web Browser. Fetches/displays documents from web servers. Mosaic 1993

Web Browser. Fetches/displays documents from web servers. Mosaic 1993 HTML5 and CSS3 Web Browser Fetches/displays documents from web servers Mosaic 1993 Firefox,IE,Chrome,Safari,Opera,Lynx,Mosaic,Konqueror There are standards, but wide variation in features Desktop Browser

More information

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

Principles of Web Design 6 th Edition. Chapter 12 Responsive Web Design Principles of Web Design 6 th Edition Chapter 12 Responsive Web Design Objectives Recognize the need for responsive web design Use media queries to apply conditional styles Build a basic media query Create

More information

Making the Most of Existing Public Web Development Frameworks WEB04

Making the Most of Existing Public Web Development Frameworks WEB04 Making the Most of Existing Public Web Development Frameworks WEB04 jquery Mobile Write less, do more 2 The jquery Suite UI Overhaul Look and Feel Transitions Interactions Touch, Mouse, Keyboard Don t

More information

Responsive Web Design (RWD) Best Practices Guide Version: 2013.11.20

Responsive Web Design (RWD) Best Practices Guide Version: 2013.11.20 Responsive Web Design (RWD) Best Practices Guide Version: 2013.11.20 This document includes best practices around responsive web design (RWD) when developing hybrid applications. Details on each checklist

More information

Professional iphone and ipod touch Programming. Building Applications for Mobile Safari

Professional iphone and ipod touch Programming. Building Applications for Mobile Safari Professional iphone and ipod touch Programming Building Applications for Mobile Safari Richard Wagner WILEY Wiley Publishing, Inc. Acknowledgments Introduction xvii xix Chapter 1: Introducing the iphone

More information

HTML5 & Friends. And How They Change A Developer s Life

HTML5 & Friends. And How They Change A Developer s Life HTML5 & Friends And How They Change A Developer s Life Yang Piao yp@cmu.edu 2 HTML5? 3 What is HTML5 The markup language 5 th major version of HTML successor of HTML 4.01 Or a set of cutting-edge web technologies

More information

DESIGN RESPONSIVELY 2012-08-18 DRUPAL CAMP CT RESPONSIVE WEB DESIGN AND DRUPAL PROJECT. Monday, August 27, 12

DESIGN RESPONSIVELY 2012-08-18 DRUPAL CAMP CT RESPONSIVE WEB DESIGN AND DRUPAL PROJECT. Monday, August 27, 12 PROJECT DESIGN RESPONSIVELY RESPONSIVE WEB DESIGN AND DRUPAL DATE CLIENT 2012-08-18 DRUPAL CAMP CT SHAUN GORNEAU WEB STRATEGIST WEB SITE DESIGNER + DEVELOPER DRUPAL: THEMER, ARCHITECT + DEVELOPER SHAUN

More information

1. About the Denver LAMP meetup group. 2. The purpose of Denver LAMP meetups. 3. Volunteers needed for several positions

1. About the Denver LAMP meetup group. 2. The purpose of Denver LAMP meetups. 3. Volunteers needed for several positions 1. About the Denver LAMP meetup group 1.Host a presentation every 1-3 months 2.Cover 1-3 related topics per meeting 3.Goal is to provide high quality education and networking, for free 2. The purpose of

More information

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

Going Beyond SAP ITS Mobile Apps to a Responsive Design Mobile Apps. JK (JayaKumar Pedapudi) Principal Consultant NTT DATA, Inc. Going Beyond SAP ITS Mobile Apps to a Responsive Design Mobile Apps JK (JayaKumar Pedapudi) Principal Consultant NTT DATA, Inc. Introduction. Learning Points. What is Responsive Design and its Role? Design

More information

CLASSROOM WEB DESIGNING COURSE

CLASSROOM WEB DESIGNING COURSE About Web Trainings Academy CLASSROOM WEB DESIGNING COURSE Web Trainings Academy is the Top institutes in Hyderabad for Web Technologies established in 2007 and managed by ITinfo Group (Our Registered

More information

This document will describe how you can create your own, fully responsive. drag and drop email template to use in the email creator.

This document will describe how you can create your own, fully responsive. drag and drop email template to use in the email creator. 1 Introduction This document will describe how you can create your own, fully responsive drag and drop email template to use in the email creator. It includes ready-made HTML code that will allow you to

More information

Republic Polytechnic School of Infocomm C308 Web Framework. Module Curriculum

Republic Polytechnic School of Infocomm C308 Web Framework. Module Curriculum Republic Polytechnic School of Infocomm C308 Web Framework Module Curriculum This document addresses the content related abilities, with reference to the module. Abilities of thinking, learning, problem

More information

Developing Mobile Websites with Responsive Web Design and jquery Mobile

Developing Mobile Websites with Responsive Web Design and jquery Mobile Developing Mobile Websites with Responsive Web Design and jquery Mobile Duration: 5 Days Price: CDN$2875 *Prices are subject to GST/HST Course Description: This hands-on course conveys the fundamental

More information

Using SAS Output Delivery System (ODS) Markup to Generate Custom PivotTable and PivotChart Reports Chevell Parker, SAS Institute

Using SAS Output Delivery System (ODS) Markup to Generate Custom PivotTable and PivotChart Reports Chevell Parker, SAS Institute Using SAS Output Delivery System (ODS) Markup to Generate Custom PivotTable and PivotChart Reports Chevell Parker, SAS Institute ABSTRACT This paper illustrates how to use ODS markup to create PivotTable

More information

Responsive Web Design for Drupal

Responsive Web Design for Drupal Responsive Web Design for Drupal www.responsivewebdesignguild.com @emmajanedotnet emma@designtotheme.com I am IAM Sorry A boot eh? Drupal drupal.org/user/1773 Photo: morten.dk Legs: walkah Author / Trainer

More information

You can use percentages for both page elements and text. Ems are used for text,

You can use percentages for both page elements and text. Ems are used for text, By Megan Doutt Speaking broadly, responsive web design is about starting from a reference resolution, and using media queries to adapt it to other contexts. - Ethan Marcotte (creator of the term Responsive

More information

Designing for Mobile Devices

Designing for Mobile Devices Designing for Mobile Devices October 2010 Pawel Zareba Table of Contents Mobile market overview... 3 Smartphone penetration... 3 Mobile browsers:... 9 Browser detect techniques... 11 Progressive enhancement:...

More information

WEB DESIGN COURSE CONTENT

WEB DESIGN COURSE CONTENT WEB DESIGN COURSE CONTENT INTRODUCTION OF WEB TECHNOLOGIES Careers in Web Technologies How Websites are working Domain Types and Server About Static and Dynamic Websites Web 2.0 Standards PLANNING A BASIC

More information

Responsive Design Best Practices

Responsive Design Best Practices Responsive Design Best Practices Heather Shore Account Director Silverpop Harlan Cayetano Sr. Email Specialist Silverpop Yin Mac Program Manager Silverpop Andrea Shyrock Production Manager Alchemy Worx

More information

WebCenter User experience. John Sim @JRSim_UIX

WebCenter User experience. John Sim @JRSim_UIX WebCenter User experience ipads - Xbox John Sim @JRSim_UIX About Fishbowl Solutions Specializing on portals & content management for 13 years Customers throughout North America & EMEA Enterprise-wide consulting

More information

HTML5 & CSS3. Jens Jäger Freiberuflicher Softwareentwickler JavaEE, Ruby on Rails, Webstuff Blog: www.jensjaeger.com Mail: mail@jensjaeger.

HTML5 & CSS3. Jens Jäger Freiberuflicher Softwareentwickler JavaEE, Ruby on Rails, Webstuff Blog: www.jensjaeger.com Mail: mail@jensjaeger. HTML5 & CSS3 and beyond Jens Jäger Freiberuflicher Softwareentwickler JavaEE, Ruby on Rails, Webstuff Blog: www.jensjaeger.com Mail: mail@jensjaeger.com 1 Content A short of history Html New Markup Webforms

More information

Web Anywhere. Mobile Optimisation With HTML5, CSS3, JavaScript. Bruce Lawson / SxSW/ 12 March 2011

Web Anywhere. Mobile Optimisation With HTML5, CSS3, JavaScript. Bruce Lawson / SxSW/ 12 March 2011 Web Anywhere Mobile Optimisation With HTML5, CSS3, JavaScript Bruce Lawson / SxSW/ 12 March 2011 introducinghtml5.com Opera one browser on many devices "Our goal is to take the one true Web and make it

More information

Programming in HTML5 with JavaScript and CSS3

Programming in HTML5 with JavaScript and CSS3 Course 20480B: Programming in HTML5 with JavaScript and CSS3 Course Details Course Outline Module 1: Overview of HTML and CSS This module provides an overview of HTML and CSS, and describes how to use

More information

BEYOND RESPONSIVE. by Marcus Morba (drupal.org/user/710680 = mori) Sunday 24 November 13

BEYOND RESPONSIVE. by Marcus Morba (drupal.org/user/710680 = mori) Sunday 24 November 13 BEYOND RESPONSIVE by Marcus Morba (drupal.org/user/710680 = mori) 1 my first responsive mobile experience was in 2004 2 2 target devices target resolutions: 240 x 320 and 480 x 640 one code base for layout

More information

HTML5 and CSS3: New Markup & Styles for the Emerging Web. Jason Clark Head of Digital Access & Web Services Montana State University Libraries

HTML5 and CSS3: New Markup & Styles for the Emerging Web. Jason Clark Head of Digital Access & Web Services Montana State University Libraries HTML5 and CSS3: New Markup & Styles for the Emerging Web Jason Clark Head of Digital Access & Web Services Montana State University Libraries twitter #hashtag #cilhtml5 pinboard.in #tag pinboard.in/u:jasonclark/t:cil-html5/

More information

Responsible Web Design A Pragmatic Approach to Website Design for Multiple Devices

Responsible Web Design A Pragmatic Approach to Website Design for Multiple Devices Responsible Web Design A Pragmatic Approach to Website Design for Multiple Devices www..com 2 Responsible Web Design A Pragmatic Approach to Website Design for Multiple Devices Executive Summary There

More information

Responsive Web Design. birds of feather

Responsive Web Design. birds of feather Responsive Web Design birds of feather Approaches to Mobile Development 1. No Mobile Approach 2. Native Mobile Applications 3. Mobile Websites 4. Responsive (universal) design No Mobile Approach Website

More information

Differences between HTML and HTML 5

Differences between HTML and HTML 5 Differences between HTML and HTML 5 1 T.N.Sharma, 2 Priyanka Bhardwaj, 3 Manish Bhardwaj Abstract: Web technology is a standard that allow developing web applications with the help of predefined sets of

More information

PLAYER DEVELOPER GUIDE

PLAYER DEVELOPER GUIDE PLAYER DEVELOPER GUIDE CONTENTS CREATING AND BRANDING A PLAYER IN BACKLOT 5 Player Platform and Browser Support 5 How Player Works 6 Setting up Players Using the Backlot API 6 Creating a Player Using the

More information

Email Creator Coding Guidelines Toolbox

Email Creator Coding Guidelines Toolbox Email Creator Coding Guidelines Toolbox The following information is needed when coding your own template from html to be imported into the Email Creator. You will need basic html and css knowledge for

More information

Mobile Web Site Style Guide

Mobile Web Site Style Guide YoRk University Mobile Web Site Style Guide Table of Contents This document outlines the graphic standards for the mobile view of my.yorku.ca. It is intended to be used as a guide for all York University

More information

INFORMATION TECHNOLOGY STANDARD

INFORMATION TECHNOLOGY STANDARD COMMONWEALTH OF PENNSYLVANIA DEPARTMENT OF PUBLIC WELFARE INFORMATION TECHNOLOGY STANDARD Name Of Standard: Mobile Website Development Domain: Application Number: Category: STD-EASS010 Date Issued: Date

More information

JavaFX Session Agenda

JavaFX Session Agenda JavaFX Session Agenda 1 Introduction RIA, JavaFX and why JavaFX 2 JavaFX Architecture and Framework 3 Getting Started with JavaFX 4 Examples for Layout, Control, FXML etc Current day users expect web user

More information

Responsive Web Design in Application Express

Responsive Web Design in Application Express Insert Information Protection Policy Classification from Slide 13 1 Responsive Web Design in Application Express using HTML5 and CSS3 Shakeeb Rahman @shakeeb Principal Member of Technical Staff Oracle

More information

Skills for Employment Investment Project (SEIP)

Skills for Employment Investment Project (SEIP) Skills for Employment Investment Project (SEIP) Standards/ Curriculum Format For Web Design Course Duration: Three Months 1 Course Structure and Requirements Course Title: Web Design Course Objectives:

More information

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

Course Information Course Number: IWT 1229 Course Name: Web Development and Design Foundation Course Information Course Number: IWT 1229 Course Name: Web Development and Design Foundation Credit-By-Assessment (CBA) Competency List Written Assessment Competency List Introduction to the Internet

More information

Let's Dig Into the Omega Theme October 27, 2012. http://bit.ly/omega-training http://bit.ly/omega-tips

Let's Dig Into the Omega Theme October 27, 2012. http://bit.ly/omega-training http://bit.ly/omega-tips Let's Dig Into the Omega Theme October 27, 2012 http://bit.ly/omega-training http://bit.ly/omega-tips brought to you by Kendall Totten Bachelors in Communication Technology & Graphic Design from Eastern

More information

Level 1 - Clients and Markup

Level 1 - Clients and Markup Level 1 - Clients and Markup The design for the email we ll build In this level The skills you ll need to compete Power Moves HTML and CSS Media queries Signature Move Using external resources An HTML

More information

MAGENTO THEME SHOE STORE

MAGENTO THEME SHOE STORE MAGENTO THEME SHOE STORE Developer: BSEtec Email: support@bsetec.com Website: www.bsetec.com Facebook Profile: License: GPLv3 or later License URL: http://www.gnu.org/licenses/gpl-3.0-standalone.html 1

More information

Web Development I & II*

Web Development I & II* Web Development I & II* Career Cluster Information Technology Course Code 10161 Prerequisite(s) Computer Applications Introduction to Information Technology (recommended) Computer Information Technology

More information

White Paper Using PHP Site Assistant to create sites for mobile devices

White Paper Using PHP Site Assistant to create sites for mobile devices White Paper Using PHP Site Assistant to create sites for mobile devices Overview In the last few years, a major shift has occurred in the number and capabilities of mobile devices. Improvements in processor

More information

IE Class Web Design Curriculum

IE Class Web Design Curriculum Course Outline Web Technologies 130.279 IE Class Web Design Curriculum Unit 1: Foundations s The Foundation lessons will provide students with a general understanding of computers, how the internet works,

More information

Build Once, Deploy Everywhere: Support Both ios and Android

Build Once, Deploy Everywhere: Support Both ios and Android Build Once, Deploy Everywhere: Support Both ios and Android Andrea Schiller #mstrworld Agenda Introduction Devices Design and Development Deployment Questions 2 #mstrworld Agenda Introduction Devices Design

More information

Web Development. Owen Sacco. ICS2205/ICS2230 Web Intelligence

Web Development. Owen Sacco. ICS2205/ICS2230 Web Intelligence Web Development Owen Sacco ICS2205/ICS2230 Web Intelligence Introduction Client-Side scripting involves using programming technologies to build web pages and applications that are run on the client (i.e.

More information

38 Essential Website Redesign Terms You Need to Know

38 Essential Website Redesign Terms You Need to Know 38 Essential Website Redesign Terms You Need to Know Every industry has its buzzwords, and web design is no different. If your head is spinning from seemingly endless jargon, or if you re getting ready

More information

WEB DEVELOPMENT IA & IB (893 & 894)

WEB DEVELOPMENT IA & IB (893 & 894) DESCRIPTION Web Development is a course designed to guide students in a project-based environment in the development of up-to-date concepts and skills that are used in the development of today s websites.

More information

^/ CS> KRIS. JAMSA, PhD, MBA. y» A- JONES & BARTLETT LEARNING

^/ CS> KRIS. JAMSA, PhD, MBA. y» A- JONES & BARTLETT LEARNING %\ ^/ CS> v% Sr KRIS JAMSA, PhD, MBA y» A- JONES & BARTLETT LEARNING Brief Contents Acknowledgments Preface Getting Started with HTML Integrating Images Using Hyperlinks to Connect Content Presenting Lists

More information

DESIGNING MOBILE FRIENDLY EMAILS

DESIGNING MOBILE FRIENDLY EMAILS DESIGNING MOBILE FRIENDLY EMAILS MAKING MOBILE EMAILERS SELECT PLAN CONTEXT CONTENT DESIGN DELIVERY Before you go mobile For optimal usage PICTURES OF DESKTOP VS MOBILE SAME SAME BUT DIFFERENT EMAIL CLIENTS

More information

Responsive Web Design (RWD) Building a single web site for the desktop, tablet and smartphone

Responsive Web Design (RWD) Building a single web site for the desktop, tablet and smartphone Responsive Web Design (RWD) Building a single web site for the desktop, tablet and smartphone An Infopeople Webinar November 13, 2013 Jason Clark Head of Digital Access & Web Services Montana State University

More information

Research on HTML5 in Web Development

Research on HTML5 in Web Development Research on HTML5 in Web Development 1 Ch Rajesh, 2 K S V Krishna Srikanth 1 Department of IT, ANITS, Visakhapatnam 2 Department of IT, ANITS, Visakhapatnam Abstract HTML5 is everywhere these days. HTML5

More information

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

Over mij. 17 jaar 17 jaar 2 jaar. 1 week Oracle Application Express & Christian Rokitta.nl OGh APEX Dag 26 Maart 2012 1 2 Over mij 17 jaar 17 jaar 2 jaar 1 week Agenda Waarom Waarom mobile website (vs native App)? HTML APEX Kosten voor mobile

More information

Understanding Responsive Web Design (RWD) & Environment Aware Component Design Version: 2013.11.21

Understanding Responsive Web Design (RWD) & Environment Aware Component Design Version: 2013.11.21 Understanding Responsive Web Design (RWD) & Environment Aware Component Design Version: 2013.11.21 Contents Contents Checklist Planning Responsive Web Design Overview What is responsive design? When should

More information

RESPONSIVE EMAIL DESIGN

RESPONSIVE EMAIL DESIGN RESPONSIVE EMAIL DESIGN SELLIGENT The contents of this manual cover material copyrighted by Selligent. This manual cannot be reproduced, in part or in whole, or distributed or transferred by means electronic

More information

Sizmek Formats. IAB Mobile Pull. Build Guide

Sizmek Formats. IAB Mobile Pull. Build Guide Sizmek Formats IAB Mobile Pull Build Guide Table of Contents Overview...3 Supported Platforms... 6 Demos/Downloads... 6 Known Issues... 6 Implementing a IAB Mobile Pull Format...6 Included Template Files...

More information

Responsive Web Design: Media Types/Media Queries/Fluid Images

Responsive Web Design: Media Types/Media Queries/Fluid Images HTML Media Types Responsive Web Design: Media Types/Media Queries/Fluid Images Mr Kruyer s list of HTML Media Types to deliver CSS to different devices. Important note: Only the first three are well supported.

More information

Web Design Specialist

Web Design Specialist UKWDA Training: CIW Web Design Series Web Design Specialist Course Description CIW Web Design Specialist is for those who want to develop the skills to specialise in website design and builds upon existing

More information

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

Mobility Introduction Android. Duration 16 Working days Start Date 1 st Oct 2013 Mobility Introduction Android Duration 16 Working days Start Date 1 st Oct 2013 Day 1 1. Introduction to Mobility 1.1. Mobility Paradigm 1.2. Desktop to Mobile 1.3. Evolution of the Mobile 1.4. Smart phone

More information

Issues of Hybrid Mobile Application Development with PhoneGap: a Case Study of Insurance Mobile Application

Issues of Hybrid Mobile Application Development with PhoneGap: a Case Study of Insurance Mobile Application DATABASES AND INFORMATION SYSTEMS H.-M. Haav, A. Kalja and T. Robal (Eds.) Proc. of the 11th International Baltic Conference, Baltic DB&IS 2014 TUT Press, 2014 215 Issues of Hybrid Mobile Application Development

More information

What s New in Doc-To-Help

What s New in Doc-To-Help What s New in Doc-To-Help Doc-To-Help now features a powerful new Responsive NetHelp Theme, and Widgets that you can use to add interactivity, enhanced display of images and other content, and alternate

More information

WEB DEVELOPMENT COURSE (PHP/ MYSQL)

WEB DEVELOPMENT COURSE (PHP/ MYSQL) WEB DEVELOPMENT COURSE (PHP/ MYSQL) COURSE COVERS: HTML 5 CSS 3 JAVASCRIPT JQUERY BOOTSTRAP 3 PHP 5.5 MYSQL SYLLABUS HTML5 Introduction to HTML Introduction to Internet HTML Basics HTML Elements HTML Attributes

More information

JTouch Mobile Extension for Joomla! User Guide

JTouch Mobile Extension for Joomla! User Guide JTouch Mobile Extension for Joomla! User Guide A Mobilization Plugin & Touch Friendly Template for Joomla! 2.5 Author: Huy Nguyen Co- Author: John Nguyen ABSTRACT The JTouch Mobile extension was developed

More information

Developer Tutorial Version 1. 0 February 2015

Developer Tutorial Version 1. 0 February 2015 Developer Tutorial Version 1. 0 Contents Introduction... 3 What is the Mapzania SDK?... 3 Features of Mapzania SDK... 4 Mapzania Applications... 5 Architecture... 6 Front-end application components...

More information

Using HTML5 Pack for ADOBE ILLUSTRATOR CS5

Using HTML5 Pack for ADOBE ILLUSTRATOR CS5 Using HTML5 Pack for ADOBE ILLUSTRATOR CS5 ii Contents Chapter 1: Parameterized SVG.....................................................................................................1 Multi-screen SVG.......................................................................................................4

More information

Facebook Twitter YouTube Google Plus Website Email. o Zooming and Panning. Panel. 3D commands. o Working with Canvas

Facebook Twitter YouTube Google Plus Website Email. o Zooming and Panning. Panel. 3D commands. o Working with Canvas WEB DESIGN COURSE COURSE COVERS: Photoshop HTML 5 CSS 3 Design Principles Usability / UI Design BOOTSTRAP 3 JAVASCRIPT JQUERY CSS Animation Optimizing of Web SYLLABUS FEATURES 2 Hours of Daily Classroom

More information

How to Build a Mobile Site with Drupal. Andrew Berry, Lullabot Harris Rashid, Chapter Three

How to Build a Mobile Site with Drupal. Andrew Berry, Lullabot Harris Rashid, Chapter Three How to Build a Mobile Site with Drupal Andrew Berry, Lullabot Harris Rashid, Chapter Three About Us BADCAMP11 $20 off 1st month, good until October 28 We're still figuring out how to "do mobile" https://secure.flickr.com/photos/3059349393/3786855827/in/photostream/

More information

CREATING RESPONSIVE UI FOR WEB STORE USING CSS

CREATING RESPONSIVE UI FOR WEB STORE USING CSS CREATING RESPONSIVE UI FOR WEB STORE USING CSS Magdalena Wiciak Bachelor s Thesis May 2014 Degree Programme in Information Technology Technology, communication and transport DESCRIPTION Author(s) WICIAK,

More information

Advanced Web Development SCOPE OF WEB DEVELOPMENT INDUSTRY

Advanced Web Development SCOPE OF WEB DEVELOPMENT INDUSTRY Advanced Web Development Duration: 6 Months SCOPE OF WEB DEVELOPMENT INDUSTRY Web development jobs have taken thе hot seat when it comes to career opportunities and positions as a Web developer, as every

More information

Creating mobile layout designs in Adobe Muse

Creating mobile layout designs in Adobe Muse Creating mobile layout designs in Adobe Muse Using Adobe Muse, you can create site layouts for web content to be displayed on desktop, smartphones, and tablets. Using the mobile design features, you can

More information

Course Descriptions for Focused Learning Classes

Course Descriptions for Focused Learning Classes Course Descriptions for Focused Learning Classes Excel Word PowerPoint Access Outlook Adobe Visio Publisher FrontPage Dreamweaver EXCEL Classes Excel Pivot Tables 2 hours Understanding Pivot Tables Examining

More information

Interactive HTML Reporting Using D3 Naushad Pasha Puliyambalath Ph.D., Nationwide Insurance, Columbus, OH

Interactive HTML Reporting Using D3 Naushad Pasha Puliyambalath Ph.D., Nationwide Insurance, Columbus, OH Paper DV09-2014 Interactive HTML Reporting Using D3 Naushad Pasha Puliyambalath Ph.D., Nationwide Insurance, Columbus, OH ABSTRACT Data visualization tools using JavaScript have been flourishing recently.

More information

Responsive and Adaptive Web Design. Responsive & Adaptive websites-respond to the user s device by showing an optimized view.

Responsive and Adaptive Web Design. Responsive & Adaptive websites-respond to the user s device by showing an optimized view. Responsive and Adaptive Web Design Responsive & Adaptive websites-respond to the user s device by showing an optimized view. Web Design Assumptions Are Changing Rapidly Making a desktop layout small is

More information

Designing The User Experience. 2010 AIGA Design Camp

Designing The User Experience. 2010 AIGA Design Camp Designing The User Experience 2010 AIGA Design Camp TABLE OF CONTENTS Designing The User Experience...1 Definitions:...3 User Experience... 3 Interaction Design... 3 Experience Design... 3 Information

More information

All About Android WHAT IS ANDROID?

All About Android WHAT IS ANDROID? All About Android WHAT IS ANDROID? Android specifically refers to a mobile operating system (based on Linux) that is developed by Google. It is open-source software, meaning that anyone can download the

More information

SAULT COLLEGE OF APPLIED ARTS AND TECHNOLOGY SAULT STE. MARIE, ONTARIO COURSE OUTLINE

SAULT COLLEGE OF APPLIED ARTS AND TECHNOLOGY SAULT STE. MARIE, ONTARIO COURSE OUTLINE SAULT COLLEGE OF APPLIED ARTS AND TECHNOLOGY SAULT STE. MARIE, ONTARIO COURSE OUTLINE COURSE TITLE: Introduction to Web Development CODE NO. : SEMESTER: 1 PROGRAM: AUTHOR: IT Studies Dennis Ochoski DATE:

More information

Making Web Application using Tizen Web UI Framework. Koeun Choi

Making Web Application using Tizen Web UI Framework. Koeun Choi Making Web Application using Tizen Web UI Framework Koeun Choi Contents Overview Web Applications using Web UI Framework Tizen Web UI Framework Web UI Framework Launching Flow Web Winsets Making Web Application

More information

Fundamentals of Web Design (One Semester)

Fundamentals of Web Design (One Semester) Fundamentals of Web Design (One Semester) In this course students are introduced to the basics of web page design. Topics include information about the World Wide Web, copyright and e Commerce as well

More information

Informz for Mobile Devices: Making Your Emails PDA and Phone-Friendly

Informz for Mobile Devices: Making Your Emails PDA and Phone-Friendly Informz for Mobile Devices: Making Your Emails PDA and Phone-Friendly The use of personal digital assistants (PDAs) has increased exponentially since the early days of rudimentary Palm Pilots and similar

More information

Visualizing Data: Scalable Interactivity

Visualizing Data: Scalable Interactivity Visualizing Data: Scalable Interactivity The best data visualizations illustrate hidden information and structure contained in a data set. As access to large data sets has grown, so has the need for interactive

More information

the future of mobile web by startech.ro

the future of mobile web by startech.ro the future of mobile web by startech.ro year of the mobile web 2007 2008 2009 2010 2011 2 year of the mobile web 2007 2008 2009 2010 2011 3 year of the mobile web 2007 2008 2009 2010 2011 4 the device

More information

SellerDeck 2014 Responsive Design Guide

SellerDeck 2014 Responsive Design Guide SellerDeck 2014 Responsive Design Guide Version: 1.0.0 SellerDeck 2014 Responsive Design 1 Contents Introduction...3 Themes and Wireframe...4 Classic Theme...4 Smart Theme...5 Wireframe...6 How the Responsive

More information

Optimizing your E-Business Suite for Mobile and Tablet

Optimizing your E-Business Suite for Mobile and Tablet Optimizing your E-Business Suite for Mobile and Tablet - Using existing EBS Functionality to transform your User Experience (UX) 08 th December 2014 Michael West UX Hero / Director T: 07884218111 E: michael.west@appsynx

More information

Web Publishers Group. Tuesday 13 March 2012

Web Publishers Group. Tuesday 13 March 2012 Web Publishers Group Tuesday 13 March 2012 Responsive Web Design Mobilising the Internet Scott O Brien Technical Web Coordinator ANU Marketing Office 3 Responsive web design Designing a website in a manner

More information

separate the content technology display or delivery technology

separate the content technology display or delivery technology Good Morning. In the mobile development space, discussions are often focused on whose winning the mobile technology wars how Android has the greater share of the mobile market or how Apple is has the greatest

More information

IBM Worklight: Responsive Design for Mul8- Channel Applica8on Development

IBM Worklight: Responsive Design for Mul8- Channel Applica8on Development IBM Worklight: Responsive Design for Mul8- Channel Applica8on Development Please Note IBM s statements regarding its plans, directions, and intent are subject to change or withdrawal without notice at

More information

ireview Template Manual

ireview Template Manual ireview Template Manual Contents Template Overview... 2 Main features... 2 Template Installation... 3 Installation Steps... 3 Upgrading ireview... 3 Template Parameters... 4 Module Positions... 6 Module

More information

Outline. CIW Web Design Specialist. Course Content

Outline. CIW Web Design Specialist. Course Content CIW Web Design Specialist Description The Web Design Specialist course (formerly titled Design Methodology and Technology) teaches you how to design and publish Web sites. General topics include Web Site

More information

Report Customization Using PROC REPORT Procedure Shruthi Amruthnath, EPITEC, INC., Southfield, MI

Report Customization Using PROC REPORT Procedure Shruthi Amruthnath, EPITEC, INC., Southfield, MI Paper SA12-2014 Report Customization Using PROC REPORT Procedure Shruthi Amruthnath, EPITEC, INC., Southfield, MI ABSTRACT SAS offers powerful report writing tools to generate customized reports. PROC

More information

Developing Cross-platform Mobile and Web Apps

Developing Cross-platform Mobile and Web Apps 1 Developing Cross-platform Mobile and Web Apps Xiang Mao 1 and Jiannong Xin * 2 1 Department of Electrical and Computer Engineering, University of Florida 2 Institute of Food and Agricultural Sciences

More information

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

Responsive Web Design for Teachers. Exercise: Building a Responsive Page with the Fluid Grid Layout Feature Exercise: Building a Responsive Page with the Fluid Grid Layout Feature Now that you know the basic principles of responsive web design CSS3 Media Queries, fluid images and media, and fluid grids, you

More information

We automatically generate the HTML for this as seen below. Provide the above components for the teaser.txt file.

We automatically generate the HTML for this as seen below. Provide the above components for the teaser.txt file. Creative Specs Gmail Sponsored Promotions Overview The GSP creative asset will be a ZIP folder, containing four components: 1. Teaser text file 2. Teaser logo image 3. HTML file with the fully expanded

More information

Essential HTML & CSS for WordPress. Mark Raymond Luminys, Inc. 949-654-3890 mraymond@luminys.com www.luminys.com

Essential HTML & CSS for WordPress. Mark Raymond Luminys, Inc. 949-654-3890 mraymond@luminys.com www.luminys.com Essential HTML & CSS for WordPress Mark Raymond Luminys, Inc. 949-654-3890 mraymond@luminys.com www.luminys.com HTML: Hypertext Markup Language HTML is a specification that defines how pages are created

More information

The Essential Guide to HTML Email Design

The Essential Guide to HTML Email Design The Essential Guide to HTML Email Design Emailmovers Limited, Pindar House, Thornburgh Road Scarborough, North Yorkshire, YO11 3UY Tel: 0845 226 7181 Fax: 0845 226 7183 Email: enquiries@emailmovers.com

More information

Citrix StoreFront. Customizing the Receiver for Web User Interface. 2012 Citrix. All rights reserved.

Citrix StoreFront. Customizing the Receiver for Web User Interface. 2012 Citrix. All rights reserved. Citrix StoreFront Customizing the Receiver for Web User Interface 2012 Citrix. All rights reserved. Customizing the Receiver for Web User Interface Introduction Receiver for Web provides a simple mechanism

More information