Iframes when necessity calls for them

Size: px
Start display at page:

Download "Iframes when necessity calls for them"

Transcription

1 Iframes when necessity calls for them Speaker Mirela Georgescu Date

2 Profile 1995 Founded In a close relationship with our clients we deliver excellent, full-service IT in order to help them to reach their goals. 15+ Mln. revenue 150+ Employees 20+ APEX experts Core values Collaboration Respect Pragmatism Loyalty 2 2

3 APEX Services Cloud / onpremise management Training Pragmatic approach Instant business value Complete support for implementation possible Application management Development mobile & web apps (App factory) 3 3

4 Outline Intro When? Why? What? How? Communication Add iframes Iframes and APEX Save Success- and error messages Conclusions 4

5 Intro - Why this presentation? You re the voice of reason. Stupid iframes. So difficult and don t communicate with each other. Transfer Solutions APEX special interest group 5

6 Intro - History of the solution The beginning: 2014 APEX 4.2 Requirements: 3 mouse clicks good performance good UX 6

7 Intro - History of the solution Options: PL/SQL region Dialog Iframes Too complex Not user friendly Performance drawbacks Use APEX functionalities Divide the complexity 7

8 Intro - History of the solution Same-origin policy Bits of information, scarce in combination with APEX Team 8

9 When start with iframes? Experience in jquery / JavaScript Best practices Time 9

10 Why using iframes? Lots of information Fast No effort (not many clicks) Dynamic content Inter-dependent content 10

11 What are iframes? Pages <body> <iframe name="framefrm_3061" src="f?p=100:100: ::no:1152:p1152_id:3061&cs=dkva " > #document <html>. </html> </iframe> <iframe name="framefrm_3062 src="f?p=100:100: ::no:1152:p1152_id:3062&cs=3dna8fu " > #document <html> PARENT </html> </iframe> </body> $( iframe[name= framefrm_3061 ] ) window.frames[ framefrm_3061 ] IFRAME IFRAME 11

12 Communication - HTML, APEX items PARENT Iframe to parent: parent.$(.t-body') parent.$( #P100_EDITABLE_FRAME_ID') IFRAME IFRAME Parent to iframe: $( iframe[name= IFR_123 ] ).contents().find('.t-body') Iframe to iframe: through the parent parent.$( iframe[name= IFR_123 ] ).contents().find(.t-body ) 12

13 Communication functions, triggers Iframe to parent: parent.p0100.handlerefreshregions(); parent.$( #P100_VESSEL').trigger( apexrefresh ); Parent to iframe: window.frames['framefrm_3061'].apex.submit( SAVE ); window.frames['framevarious'].$('#p1043_rln_id').trigger('apexrefresh'); PARENT IFRAME IFRAME Iframe to iframe, through the parent: parent.window.frames['framefrm_3061'].apex.item('p100_rln_id').setvalue( 123 ); Alternative: jquery postmessage plugin at custom events 13

14 How - to add iframes? 1. Create url using apex_page.get_url select t.id..., apex_page.get_url ( p_page => m.app_page_id, p_clear_cache => m.app_page_id, p_items => P m.app_page_id _ID, p_values => t.id ) as url APEX Report Region Row 1 Row 2 Row 3, FRM t.id as frame_name... from my_table t, my_metadata m... 15

15 How - to add frames? 2. Add the url as data attribute In the template Column HTML expression APEX Report Region Row 1 Row 2 Row 3 <div class="framediv" data-iframe-url="#url#" data-iframe-name="#frame_name#"></div> 16

16 How - to add frames? 3. Dynamic action to add the iframe element $(document).on('click', '#ROTATION_REPORT.myArrowDown', function () { var framedif = $(this).closest('.framediv'); if (framedif.find( iframe ).length == 0){ framedif.html('<iframe name="frame' + framedif.data('name') APEX Report Region Row 1 <iframe name="frame1" src=" Row 2 } + '" class="hidden" src="' + framedif.data('url') + '"></iframe>'); Row 3 }); 17

17 How - to add frames? 4. Resize iframe when finished loading APEX Report Region Row 1 <iframe name="frame1" src=" Row 2 APEX Report Region Row 1 APEX iframe page Row 3 Row 2 Row 3 18

18 How - to add frames? 4. Resize iframe when finished loading IFRAME var iframes = { "triggerresize" : function(){ var e = $.Event( "resizeiframe", { iframename: window.name } ); PARENT var parentpage = { "bindresizeiframe" : function(){ $('body').on('resizeiframe', function(e){ }} parent.$('body').trigger(e); var iframe = $('iframe[name="' + e.iframename + '"]'); var winheight = iframe.contents().find('.t-body').height(); iframe.closest('. framediv ').height(winheight); }); }} Called in IFRAME page template: Execute when Page Loads iframes.triggerresize(); Called in PARENT page: On load parentpage.bindresizeiframe(); 19

19 Iframes and APEX Page load use APEX Automatic Row Fetch (recommended) do not use set_session_state Page process use custom PL/SQL process do not use Automatic Row Processing (Current version of data in database has changed since user initiated update process) Developer Toolbar 20

20 Save apex.submit All iframes at the same time On click of a button, as the user requests it Possible browser performance issues? Asynchronicity Previous iframe Good performance Save on the fly, non-invasive success messages Have to know which iframe to submit Have to know when to submit? No save action from user needed 21

21 Success- and error messages In the iframe In the parent Mini success message 1. All iframes at the same time On success On error (scroll? focus?) 2. Previous iframe On success? On error On both 22

22 Conclusions Large part of APEX can be used, should be used as much as possible? Iframes can be tamed, but it comes with challenges No low-code application, Javascript / jquery knowledge needed 23

23 We proudly present our 3 sessions at APEX World 2018! Thursday 13:30 Dynamical OracleJET charts interactive and compelling, but also complex (Lidewij van den Brink) 14:30 Iframes when necessity calls for them (Mirela Georgescu) Friday 10:40 Oracle APEX goes viral the antidote to the most commonly used word processor (Arjan van der Palen, Pieter Brekelmans (NVIC))

24 Questions Answers CONSULTING MANAGED SERVICES EDUCATION 25

Practic Pr al actic Dynamic Actions Intro Jorge Rimblas 1. 1

Practic Pr al actic Dynamic Actions Intro Jorge Rimblas 1. 1 Practical Dynamic Actions Intro Jorge Rimblas 1.1 Jorge Rimblas Senior APEX Consultant @rimblas rimblas.com/blog Contributor to "Expert Oracle Application Express, 2nd Edition" with "Themes & Templates"

More information

Apex 5.1 Interactive Grid and Other New features

Apex 5.1 Interactive Grid and Other New features Apex 5.1 Interactive Grid and Other New features Presented by: John Jay King Download this paper from: 1 Session Objectives Become familiar with the new features of APEX 5.1 Learn how the Interactive Grid

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

Oracle Forms and Oracle APEX The Odd Couple

Oracle Forms and Oracle APEX The Odd Couple Oracle Forms and Oracle APEX The Odd Couple About me 2 Francis Mignault CTO and Co-founder, Insum Solutions 30+ years with Oracle DB, 14+ years with APEX. (Forms 2.3 / Oracle 5) Books: Expert Oracle Application

More information

Application Express Just Plug-it In

Application Express Just Plug-it In Application Express Just Plug-it In Josh Millinger Niantic Systems December 13, 2011 Speaker Qualifications Josh Millinger, President, Niantic Systems, LLC CS degrees from UW-Madison, Johns Hopkins Former

More information

IMY 110 Theme 11 HTML Frames

IMY 110 Theme 11 HTML Frames IMY 110 Theme 11 HTML Frames 1. Frames in HTML 1.1. Introduction Frames divide up the web browser window in much the same way that a table divides up part of a page, but a different HTML document is loaded

More information

Oracle APEX 18.1 New Features

Oracle APEX 18.1 New Features Oracle APEX 18.1 New Features May, 2018 Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated

More information

I, J, K. Eclipse, 156

I, J, K. Eclipse, 156 Index A, B Android PhoneGap app, 158 deploying and running, 172 New Eclipse project, 158 Activity dialog, 162 application properties, 160 AVD, 170 configuration, 167 Launcher Icon dialog, 161 PhoneGap

More information

Application Express Dynamic Duo

Application Express Dynamic Duo Application Express Dynamic Duo Josh Millinger Niantic Systems June 7, 2011 Speaker Qualifications Josh Millinger, President, Niantic Systems, LLC CS degrees from UW-Madison, Johns Hopkins Former Oracle

More information

1 Copyright 2013, Oracle and/or its affiliates. All rights reserved.

1 Copyright 2013, Oracle and/or its affiliates. All rights reserved. 1 Copyright 2013, Oracle and/or its affiliates. All rights reserved. Oracle Application Express 2 Copyright 2013, Oracle and/or its affiliates. All rights reserved. Fully supported no-cost feature of Oracle

More information

Design Document V2 ThingLink Startup

Design Document V2 ThingLink Startup Design Document V2 ThingLink Startup Yon Corp Andy Chen Ashton Yon Eric Ouyang Giovanni Tenorio Table of Contents 1. Technology Background.. 2 2. Design Goal...3 3. Architectural Choices and Corresponding

More information

What is Standard APEX? TOOLBOX FLAT DESIGN CARTOON PEOPLE

What is Standard APEX? TOOLBOX FLAT DESIGN CARTOON PEOPLE What is Standard APEX? TOOLBOX FLAT DESIGN CARTOON PEOPLE About me Freelancer since 2010 Consulting and development Oracle databases APEX BI Blog: APEX-AT-WORK Twitter: @tobias_arnhold - Oracle ACE Associate

More information

ServiceWise/CustomerWise 10.1

ServiceWise/CustomerWise 10.1 Page 1 of 35 ServiceWise/CustomerWise 10.1 Highlights Widescreen and multi monitor support Unified incident level attachments New HTML5 ProjectPlan with resource management Doubled number of available

More information

Forerunner Mobilizer Dashboards

Forerunner Mobilizer Dashboards Forerunner Mobilizer Dashboards Introduction With Forerunner Mobilizer Dashboard end users can now create dashboard style layouts by combining multiple different reports on a single page that will scroll

More information

Google Docs: Access, create, edit, and print

Google Docs: Access, create, edit, and print Google Docs: Access, create, edit, and print To view all of your Google Docs, or to create a new document, visit docs.google.com/document. Create a document From the Google Docs home screen, click the

More information

Dashboards. created by others because they have given you permission to view.

Dashboards. created by others because they have given you permission to view. The Unified Intelligence Center interface is organized by dashboards. are web pages that display reports, scheduled reports, sticky notes, and web-based elements, such as URLs and web widgets, that are

More information

To embed the form using an html iframe command, use the script at the end of this document.

To embed the form using an html iframe command, use the script at the end of this document. WEB TO LEAD FORM This function gives Prospects the same opportunity as Members and Guests to enroll online. Users can fill in the Web to Lead Form, submit, and receive a confirmation message. The prospect

More information

Automation is here: How Google Apps can be leveraged to automate tasks in library technology environments

Automation is here: How Google Apps can be leveraged to automate tasks in library technology environments Automation is here: How Google Apps can be leveraged to automate tasks in library technology environments Laura Gerlitz, University of Alberta Libraries Sam Hamilton, Edmonton Public Library Primary Apps

More information

The Basics of PowerPoint

The Basics of PowerPoint MaryBeth Rajczewski The Basics of PowerPoint Microsoft PowerPoint is the premiere presentation software. It enables you to create professional presentations in a short amount of time. Presentations using

More information

Database Developers Forum APEX

Database Developers Forum APEX Database Developers Forum APEX 20.05.2014 Antonio Romero Marin, Aurelien Fernandes, Jose Rolland Lopez De Coca, Nikolay Tsvetkov, Zereyakob Makonnen, Zory Zaharieva BE-CO Contents Introduction to the Controls

More information

Creating a custom gadget using the Finesse JavaScript Library API

Creating a custom gadget using the Finesse JavaScript Library API Creating a custom gadget using the Finesse JavaScript Library API Denise Kwan, Software Engineer @ DevNet Cisco Spark How Questions? Use Cisco Spark to communicate with the speaker after the session 1.

More information

Google Docs: Access, create, edit, and print

Google Docs: Access, create, edit, and print Google Docs: Access, create, edit, and print There are several kinds of Google documents: Docs, Sheets, Slides, Drawings, and Forms. We ll use a basic Google Doc to show you how to get started with various

More information

1 Copyright 2013, Oracle and/or its affiliates. All rights reserved.

1 Copyright 2013, Oracle and/or its affiliates. All rights reserved. 1 Copyright 2013, Oracle and/or its affiliates. All rights Creating Custom PDF reports with APEX 4.2.2 Marc Sewtz Senior Software Development Manager Oracle USA Inc. New York, NY 2 Copyright 2013, Oracle

More information

Oracle Data Visualization SDK

Oracle Data Visualization SDK Oracle Business Analytics Oracle Data Visualization SDK Antony Heljula 26 June 2017 www.peakindicators.com 1 Gold Partners Specialized Oracle Business Intelligence Foundation Oracle Data Visualization

More information

SharePoint For All. Jennie Delisi Accessibility Analyst Kris Schulze User Experience

SharePoint For All. Jennie Delisi Accessibility Analyst Kris Schulze User Experience SharePoint For All Jennie Delisi Accessibility Analyst Kris Schulze User Experience Question 1 Do you work for the State of MN, county, city, other? (Text field beside other) State of MN executive branch

More information

Oracle Application Express

Oracle Application Express Oracle Application Express DOAG Regionaltreffen NRW March 26, 2014 Joel R. Kallman, Director, Software Development Oracle Application Express 1 Copyright 2014, Oracle and/or its affiliates. All rights

More information

ThingLink User Guide. Andy Chen Eric Ouyang Giovanni Tenorio Ashton Yon

ThingLink User Guide. Andy Chen Eric Ouyang Giovanni Tenorio Ashton Yon ThingLink User Guide Yon Corp Andy Chen Eric Ouyang Giovanni Tenorio Ashton Yon Index Preface.. 2 Overview... 3 Installation. 4 Functionality. 5 Troubleshooting... 6 FAQ... 7 Contact Information. 8 Appendix...

More information

What's New in IBM WebSphere Portal Version 8? Open Mic November 6, 2012

What's New in IBM WebSphere Portal Version 8? Open Mic November 6, 2012 What's New in IBM WebSphere Portal Version 8? Open Mic November 6, 2012 Stefan Liesche Web Experience Solution and Platform Chief Architect, STSM Stefan Koch Chief Programmer - WebSphere Portal IBM Collaboration

More information

EBS goes social - The triumvirate Liferay, Application Express and EBS

EBS goes social - The triumvirate Liferay, Application Express and EBS EBS goes social - The triumvirate Liferay, Application Express and EBS Keywords: EBS, Portals, Application Express, Integration Overview Michael Pergande PROMATIS software GmbH Ettlingen As part of Oracle

More information

Grid Essentials. APEX 18.1 Interactive Grids. Karen Cannell TH Technology

Grid Essentials. APEX 18.1 Interactive Grids. Karen Cannell TH Technology Grid Essentials APEX 18.1 Interactive Grids Karen Cannell kcannell@thtechnology.com TH Technology About Me TH Technology Oracle Consulting Services, APEX Focus Mechanical/SW Engineer - Analyzed, designed,

More information

How APEXBlogs was built

How APEXBlogs was built How APEXBlogs was built By Dimitri Gielis, APEX Evangelists Copyright 2011 Apex Evangelists apex-evangelists.com How APEXBlogs was built By Dimitri Gielis This article describes how and why APEXBlogs was

More information

Professional Diploma in Web Designing

Professional Diploma in Web Designing Professional Diploma in Web Designing DOT-NET Institute: DOT-NET is a leading Educational Training institute based in Delhi. As excellence is embedded in the very core of DOT-NET principles, it provides

More information

Tutorial: World League Finance e-learning platform

Tutorial: World League Finance e-learning platform Tutorial: World League Finance e-learning platform 2016 Contents 1.The Platform 1.1 Login 1.2 Personal Home page 1.2.1 My Training 1.2.2 MyProfile 2. The course 2.1 Structure 2.2 Lesson 2.3 Final Test

More information

Oracle Application Express 5 New Features

Oracle Application Express 5 New Features Oracle Application Express 5 New Features 20th HrOUG conference October 16, 2015 Vladislav Uvarov Software Development Manager Database Server Technologies Division Copyright 2015, Oracle and/or its affiliates.

More information

About the Presenter. John Peters, JRPJR, Inc. Primarily Technology Focus

About the Presenter. John Peters, JRPJR, Inc. Primarily Technology Focus About the Presenter John Peters, JRPJR, Inc Independent Consultant based in the San Francisco Bay Area Worked with Oracle EBS since 1993 OAUG Workflow SIG Coordinator Founding board member of the Northern

More information

PowerPoint 2010 Quick Start

PowerPoint 2010 Quick Start PowerPoint is a slide show presentation program. Use a slide show to convey your message to an audience. PowerPoint can be used for education, employee orientation, business promotion, team motivation,

More information

An Oracle White Paper April Oracle Application Express 5.0 Overview

An Oracle White Paper April Oracle Application Express 5.0 Overview An Oracle White Paper April 2015 Oracle Application Express 5.0 Overview Disclaimer The following is intended to outline our general product direction. It is intended for information purposes only, and

More information

Jquery Ajax Json Php Mysql Data Entry Example

Jquery Ajax Json Php Mysql Data Entry Example Jquery Ajax Json Php Mysql Data Entry Example Then add required assets in head which are jquery library, datatable js library and css By ajax api we can fetch json the data from employee-grid-data.php.

More information

WEB SECURITY WORKSHOP TEXSAW Presented by Solomon Boyd and Jiayang Wang

WEB SECURITY WORKSHOP TEXSAW Presented by Solomon Boyd and Jiayang Wang WEB SECURITY WORKSHOP TEXSAW 2014 Presented by Solomon Boyd and Jiayang Wang Introduction and Background Targets Web Applications Web Pages Databases Goals Steal data Gain access to system Bypass authentication

More information

TeamViewer User Guide for Microsoft Dynamics CRM. Document Information Version: 0.5 Version Release Date : 20 th Feb 2018

TeamViewer User Guide for Microsoft Dynamics CRM. Document Information Version: 0.5 Version Release Date : 20 th Feb 2018 TeamViewer User Guide for Microsoft Dynamics CRM Document Information Version: 0.5 Version Release Date : 20 th Feb 2018 1 P a g e Table of Contents TeamViewer User Guide for Microsoft Dynamics CRM 1 Audience

More information

edev Technologies integreat4tfs 2015 Update 2 Release Notes

edev Technologies integreat4tfs 2015 Update 2 Release Notes edev Technologies integreat4tfs 2015 Update 2 Release Notes edev Technologies 11/18/2015 Table of Contents 1. INTRODUCTION... 2 2. SYSTEM REQUIREMENTS... 3 3. APPLICATION SETUP... 3 DASHBOARD... 4 1. FEATURES...

More information

Utilising the data attribute. adding client side behaviour in Oracle APEX

Utilising the data attribute. adding client side behaviour in Oracle APEX Utilising the data attribute adding client side behaviour in Oracle APEX Agenda Introducing the data attribute Introducing jquery Changing Page-items into HTML items Record sorting Deleting records from

More information

IOTAP Sharepoint Customizations

IOTAP Sharepoint Customizations Table of Contents Overview... 2 N of M MOSS Workflow... 2 SPitter A Twitter for Sharepoint... 2 Tag Cloud... 3 Recently added documents... 4 Zipping all items from a Sharepoint library... 4 Social book

More information

Connect to CCPL

Connect to CCPL Connect to Tech @ CCPL Charleston County Public Library July August September 2015 Technology Training Catalog TECH NEWS Want to receive this publication by email each month? Sign up for our monthly newsletter!

More information

Remote Tracker Documentation

Remote Tracker Documentation Remote Tracker Documentation Table of Contents Design... 2 Directory Structure... 2 Deploying the Application... 3 Editing the Remote Tracker web.config File... 6 Editing the Tracker.Net web.config File...

More information

Oracle Applications in a Changing Business World. Legacy Oracle Applications Won't Be Around Forever. Will You?

Oracle Applications in a Changing Business World. Legacy Oracle Applications Won't Be Around Forever. Will You? Oracle Applications in a Changing Business World Legacy Oracle Applications Won't Be Around Forever. Will You? Ross Smith Chief Architect July 7, 2017 2 Oracle Applications in a Changing Business World

More information

Quick XPath Guide. Introduction. What is XPath? Nodes

Quick XPath Guide. Introduction. What is XPath? Nodes Quick XPath Guide Introduction What is XPath? Nodes Expressions How Does XPath Traverse the Tree? Different ways of choosing XPaths Tools for finding XPath Firefox Portable Google Chrome Fire IE Selenium

More information

EBS goes social - The Triumvirate Liferay, Application Express and EBS

EBS goes social - The Triumvirate Liferay, Application Express and EBS EBS goes social - The Triumvirate Liferay, Application Express and EBS Michael Pergande, PROMATIS software GmbH DOAG 2011 Applications, Berlin, May 3rd, 2011 1 Agenda Introduction Motivation, Scenarios

More information

UNITED NATIONS DEVELOPMENT PROGRAMME

UNITED NATIONS DEVELOPMENT PROGRAMME UNITED NATIONS DEVELOPMENT PROGRAMME TERMS OF REFERENCE BACKGROUND The European Commission (EC)- United Nations Development Programme (UNDP) Joint Task Force on Electoral Assistance (JTF) was established

More information

DATASTREAM CHART STUDIO GETTING STARTED

DATASTREAM CHART STUDIO GETTING STARTED DATASTREAM DATASTREAM CHART STUDIO GETTING STARTED Thomson Reuters Training Quick and easy access to Technical Analysis charts and data is essential in today s fast moving markets. The Datastream Chart

More information

& ( ); INSERT INTO ( ) SELECT

& ( ); INSERT INTO ( ) SELECT Oracle apex array Craig is a Development Consultant at Explorer. Craig has an MSc in Computing Science and is an experienced software engineer, utilising development tools such as PL/SQL and APEX to provide

More information

Programming with the Finesse API

Programming with the Finesse API Programming with the Finesse API OpenSocial Gadgets Source: http://www.slideshare.net/wuzziwug/opensocial-intro-presentation OpenSocial Gadgets A gadget spec: Is an XML file Defines metadata about an OpenSocial

More information

What desktop integrations are available using Productivity Tools?

What desktop integrations are available using Productivity Tools? General Questions, page 1 Installation and Configuration, page 2 Scheduling Meetings using, page 4 Instant Meetings using, page 5 Site Administration, page 8 General Questions What are WebEx? What desktop

More information

Poet Image Description Tool: Step-by-step Guide

Poet Image Description Tool: Step-by-step Guide Poet Image Description Tool: Step-by-step Guide Introduction This guide is designed to help you use the Poet image description tool to add image descriptions to DAISY books. The tool assumes you have access

More information

Overview of the Adobe Dreamweaver CS5 workspace

Overview of the Adobe Dreamweaver CS5 workspace Adobe Dreamweaver CS5 Activity 2.1 guide Overview of the Adobe Dreamweaver CS5 workspace You can access Adobe Dreamweaver CS5 tools, commands, and features by using menus or by selecting options from one

More information

Remote Health Service System based on Struts2 and Hibernate

Remote Health Service System based on Struts2 and Hibernate St. Cloud State University therepository at St. Cloud State Culminating Projects in Computer Science and Information Technology Department of Computer Science and Information Technology 5-2017 Remote Health

More information

django-session-security Documentation

django-session-security Documentation django-session-security Documentation Release 2.5.1 James Pic Oct 27, 2017 Contents 1 Why not just set the session to expire after X minutes? 3 2 How does it work? 5 3 Requirements 7 4 Resources 9 4.1

More information

Getting Started with. Microsoft Office 2010

Getting Started with. Microsoft Office 2010 Getting Started with Microsoft Office 2010 Microsoft Office 2010 Objectives Explore the programs in Microsoft Office Start programs and switch between them Explore common window elements Minimize, maximize,

More information

SharePoint: Fundamentals

SharePoint: Fundamentals SharePoint: Fundamentals This class will introduce you to SharePoint and cover components available to end users in a typical SharePoint site. To access SharePoint, you will need to log into Office 365.

More information

<Insert Picture Here>

<Insert Picture Here> Oracle Forms Modernization with Oracle Application Express Marc Sewtz Software Development Manager Oracle Application Express Oracle USA Inc. 540 Madison Avenue,

More information

PowerPoint Tips and Tricks

PowerPoint Tips and Tricks PowerPoint Tips and Tricks Viewing Your Presentation PowerPoint provides multiple ways to view your slide show presentation. You can access these options either through a toolbar on your screen or by pulling

More information

Figure 1 Forms category in the Insert panel. You set up a form by inserting it and configuring options through the Properties panel.

Figure 1 Forms category in the Insert panel. You set up a form by inserting it and configuring options through the Properties panel. Adobe Dreamweaver CS6 Project 3 guide How to create forms You can use forms to interact with or gather information from site visitors. With forms, visitors can provide feedback, sign a guest book, take

More information

welcome to BOILERCAMP HOW TO WEB DEV

welcome to BOILERCAMP HOW TO WEB DEV welcome to BOILERCAMP HOW TO WEB DEV Introduction / Project Overview The Plan Personal Website/Blog Schedule Introduction / Project Overview HTML / CSS Client-side JavaScript Lunch Node.js / Express.js

More information

Skills Exam Objective Objective Number

Skills Exam Objective Objective Number Overview 1 LESSON SKILL MATRIX Skills Exam Objective Objective Number Starting Excel Create a workbook. 1.1.1 Working in the Excel Window Customize the Quick Access Toolbar. 1.4.3 Changing Workbook and

More information

SharePoint: Fundamentals

SharePoint: Fundamentals SharePoint: Fundamentals This class will introduce you to SharePoint and cover components available to end users in a typical SharePoint site. To access SharePoint, you will need to log into Office 365.

More information

All Applications Release Bulletin January 2010

All Applications Release Bulletin January 2010 All Applications Release Bulletin January 2010 In this bulletin... Online Enrollment: HTML Forms for Contracts 2 System Administration: MBP Online User Accounts 11 About Release 91_6 This release includes

More information

HOW THE INTEGRATION WORKS HOW THE INTEGRATION WORKS MICROSOFT DYNAMICS

HOW THE INTEGRATION WORKS HOW THE INTEGRATION WORKS MICROSOFT DYNAMICS HOW THE INTEGRATION WORKS MICROSOFT DYNAMICS 1 Contents iframe... 3 Custom Entities... 3 Emails... 4 Option 1: Sent Email to Salesfusion Email Entity... 4 Email URL Link Clicks... 4 Option 2: Sent Email

More information

Going to the Grid: What the APEX 5.1 Interactive Grid Means or You and Your Users. Karen Cannell

Going to the Grid: What the APEX 5.1 Interactive Grid Means or You and Your Users. Karen Cannell Going to the Grid: What the APEX 5.1 Interactive Grid Means or You and Your Users Karen Cannell kcannell@thtechnology.com TH Technology Note to Early Slide Downloaders: I edit my slides frequently up to

More information

WeCode. Brought to you by CitrixNChill

WeCode. Brought to you by CitrixNChill WeCode Brought to you by CitrixNChill Authors: David Acevedo, Jessica Huang, Zhansaya Abdikarimova, Felicia Truong, Weimin Ouyang Team: CitrixNChill Revision History: 11/25: Added test cases, updated appendix,

More information

The ROI of UI Toolkit Standardization

The ROI of UI Toolkit Standardization The ROI of UI Toolkit Standardization Whitepaper Introduction 1 Buy vs. Build 2 The ROI of Standardization 3 The ROI of Infragistics as your UX Team 3-4 Leveraged Learning 4 The Overall Value of Standardization

More information

Oracle APEX Overview. May, Copyright 2018, Oracle and/or its affiliates. All rights reserved.

Oracle APEX Overview. May, Copyright 2018, Oracle and/or its affiliates. All rights reserved. Oracle APEX 18.1 Overview May, 2018 Copyright 2018, Oracle and/or its affiliates. All rights reserved. Safe Harbor Statement The following is intended to outline our general product direction. It is intended

More information

Each query has a list of five associated links: Purpose, Detail, HTML, Excel, and Favorites.

Each query has a list of five associated links: Purpose, Detail, HTML, Excel, and Favorites. QUERY FRIENDLY VIEWER DOCUMENTATION Navigate to the following: Main Menu > Financial Management > CWU Custom Functions > Reports > Query Friendly Viewer Read through the query categories (e.g. End User

More information

Create Open Data with Google Analytics. Open Data Day 2019

Create Open Data with Google Analytics. Open Data Day 2019 Create Open Data with Google Analytics Open Data Day 2019 3/2/2019 Introduction 2 Grow with Google Edmonton is experiencing transformative growth, and we believe the tools and resources Grow with Google

More information

Help Manual. Personal DataPublisher For Outlook & SharePoint

Help Manual. Personal DataPublisher For Outlook & SharePoint V4 Personal DataPublisher For Outlook & SharePoint An add-in for Microsoft Outlook that makes it very easy and effortless to publish your mails, appointments, tasks or contacts from Outlook to SharePoint

More information

QlikView Full Browser User Manual. User Manual

QlikView Full Browser User Manual. User Manual QlikView Full Browser User Manual User Manual Henrik Steen 8-13-2014 2014-08-13 2014-10-28 Henrik Steen 01 1 Table of Content 1 Introduction... 3 2 QlikView AccessPoint... 3 3 Interface... 3 3.1 Object...

More information

Create and Share Compelling Documents with Word 2010

Create and Share Compelling Documents with Word 2010 CHAPTER 4 Create and Share Compelling Documents with Word 2010 Use Language Tools, and Translate on the Fly The last bullet should be Choose Translation Language Start with the last item first if this

More information

Getting Started With the Responsive Design Framework Add-on for WebFOCUS App Studio Release 8.1 Version 05

Getting Started With the Responsive Design Framework Add-on for WebFOCUS App Studio Release 8.1 Version 05 Getting Started With the Responsive Design Framework Add-on for WebFOCUS App Studio Release 8.1 Version 05 May 9, 2018 Active Technologies, EDA, EDA/SQL, FIDEL, FOCUS, Information Builders, the Information

More information

SKILLBUILDERS CALENDAR

SKILLBUILDERS CALENDAR SKILLBUILDERS CALENDAR A REGION PLUG-IN FOR ORACLE APPLICATION EXPRESS (APEX) www.s k i l l B u i l d e r s. c o m / A P E X Page 1 Table of Contents Overview... 3 Intro... 3 Features at a Glance... 3

More information

Rapid Application Development with APEX 5.0

Rapid Application Development with APEX 5.0 Rapid Application Development with APEX 5.0 Anthony Rayner Principal Member of Technical Staff Oracle Application Express Oracle UK The following is intended to outline Oracle s general product direction.

More information

De La Salle University Information Technology Center. Microsoft Windows SharePoint Services and SharePoint Portal Server 2003

De La Salle University Information Technology Center. Microsoft Windows SharePoint Services and SharePoint Portal Server 2003 De La Salle University Information Technology Center Microsoft Windows SharePoint Services and SharePoint Portal Server 2003 WEB DESIGNER / ADMINISTRATOR User s Guide 2 Table Of Contents I. What is Microsoft

More information

Connect to CCPL

Connect to CCPL Connect to Tech @ CCPL Charleston County Public Library October November December 2015 Technology Training Catalog TECH NEWS Want to receive this publication by email each month? Sign up for our monthly

More information

CUSTOMER PORTAL. Custom HTML splashpage Guide

CUSTOMER PORTAL. Custom HTML splashpage Guide CUSTOMER PORTAL Custom HTML splashpage Guide 1 CUSTOM HTML Custom HTML splash page templates are intended for users who have a good knowledge of HTML, CSS and JavaScript and want to create a splash page

More information

Front End Programming

Front End Programming Front End Programming Mendel Rosenblum Brief history of Web Applications Initially: static HTML files only. Common Gateway Interface (CGI) Certain URLs map to executable programs that generate web page

More information

Oracle Application Express Workshop I Ed 2

Oracle Application Express Workshop I Ed 2 Oracle University Contact Us: Local: 1800 103 4775 Intl: +91 80 67863102 Oracle Application Express Workshop I Ed 2 Duration: 5 Days What you will learn This Oracle Application Express Workshop I Ed 2

More information

APEX Times Ten Berichte. Tuning DB-Browser Datenmodellierung Schema Copy & Compare Data Grids. Extension Exchange.

APEX Times Ten Berichte. Tuning DB-Browser Datenmodellierung Schema Copy & Compare Data Grids. Extension Exchange. Oracle SQL Developer 3.0 Data Mining Debugging Code Snippets DBA-Navigator APEX Times Ten Berichte Unit Tests Migration Workbench Versionskontrolle Extension Exchange Tuning DB-Browser

More information

Faculty Quick Guide to Blackboard. Blackboard Version 9.1. Christine Paige Educational Technology Specialist.

Faculty Quick Guide to Blackboard. Blackboard Version 9.1. Christine Paige Educational Technology Specialist. Faculty Quick Guide to Blackboard Blackboard Version 9.1 Christine Paige Educational Technology Specialist paigec@strose.edu (518) 337-4912 July 2010 Table of Contents Description of Blackboard... 3 Uses

More information

Migrating Complex Oracle Forms Applications to APEX: Utopia or Reality?

Migrating Complex Oracle Forms Applications to APEX: Utopia or Reality? Migrating Complex Oracle Forms Applications to APEX: Utopia or Reality? A step-by-step journey to successfully modernizing legacy Oracle Forms applications to Oracle Application Express PITSS.CON 11.0.0

More information

Web & APP Developer Job Assured Course (3 in 1)

Web & APP Developer Job Assured Course (3 in 1) T&C Apply Web & APP Developer Job Assured Course (3 in 1) From Quick pert Infotech Interview Process Full Stack Web APP Developer Full Stack Web & App Developer (3 in 1 - Opens WebDesign, Web Developer

More information

MOBILIZE YOUR ENTERPRISE WITH TELERIK SOLUTIONS

MOBILIZE YOUR ENTERPRISE WITH TELERIK SOLUTIONS MOBILIZE YOUR ENTERPRISE WITH TELERIK SOLUTIONS Work doesn t just happen in the office. Technology is changing the way organizations operate. Today s business environment requires your employees to take

More information

DOWNLOAD OR READ : THERE IS NO EDGE PDF EBOOK EPUB MOBI

DOWNLOAD OR READ : THERE IS NO EDGE PDF EBOOK EPUB MOBI DOWNLOAD OR READ : THERE IS NO EDGE PDF EBOOK EPUB MOBI Page 1 Page 2 there is no edge there is no edge pdf there is no edge How to navigate a PDF document using Microsoft Edge. On the Windows 10 Fall

More information

Automation with Meraki Provisioning API

Automation with Meraki Provisioning API DEVNET-2120 Automation with Meraki Provisioning API Courtney M. Batiste, Solutions Architect- Cisco Meraki Cisco Spark How Questions? Use Cisco Spark to communicate with the speaker after the session 1.

More information

Adobe Marketing Cloud Best Practices Implementing Adobe Target using Dynamic Tag Management

Adobe Marketing Cloud Best Practices Implementing Adobe Target using Dynamic Tag Management Adobe Marketing Cloud Best Practices Implementing Adobe Target using Dynamic Tag Management Contents Best Practices for Implementing Adobe Target using Dynamic Tag Management.3 Dynamic Tag Management Implementation...4

More information

Design Importer User Guide

Design Importer User Guide Design Importer User Guide Rev: 9 February 2012 Sitecore CMS 6.5 Design Importer User Guide How to import the design of an external webpage as a Sitecore layout or sublayout Table of Contents Chapter 1

More information

APEX as frame for Forms. AGENDA 1. History 2. Modernization four steps Value Upgrade APEX-FORMS Web-Mashup Mobilization 3. Summary 4.

APEX as frame for Forms. AGENDA 1. History 2. Modernization four steps Value Upgrade APEX-FORMS Web-Mashup Mobilization 3. Summary 4. APEX as frame for Forms AGENDA 1. History 2. Modernization The a. b. c. d. four steps Value Upgrade APEX-FORMS Web-Mashup Mobilization 3. Summary 4. Q&A APEX-FORMS Mashup - Intro History SoftBASE has been

More information

HOW THE INTEGRATION WORKS HOW THE INTEGRATION WORKS INFOR CRM

HOW THE INTEGRATION WORKS HOW THE INTEGRATION WORKS INFOR CRM HOW THE INTEGRATION WORKS INFOR CRM 1 Contents iframe... 3 Custom Entities... 3 Emails... 4 Option 1: Sent Email to Salesfusion Email Entity (Target)... 4 Email URL Link Clicks... 4 Option 2: Sent Email

More information

You CAN Judge a Book by Its Cover: Modern User Interface Design Principles

You CAN Judge a Book by Its Cover: Modern User Interface Design Principles You CAN Judge a Book by Its Cover: Modern User Interface Design Principles Peter Koletzke Technical Director & Principal Instructor Survey Job responsibilities? DBA, developer Development tools? APEX Developer

More information

Microsoft Office 365 Forms

Microsoft Office 365 Forms Microsoft Office 365 Forms Microsoft Forms is a new part of Office 365 Education that allows teachers and students to quickly and easily create custom quizzes, surveys, questionnaires, registrations and

More information

Quick Reference Guide SharePoint Quick Reference Guide

Quick Reference Guide SharePoint Quick Reference Guide Quick Reference Guide 1 P age Table of Contents What is SharePoint?... 3 1. Home Page Layout... 4 2. Uploading Documents to a Library... 6 3. To Open a Document... 7 4. To Delete a Document... 7 5. Adding

More information

20480C: Programming in HTML5 with JavaScript and CSS3. Course Code: 20480C; Duration: 5 days; Instructor-led. JavaScript code.

20480C: Programming in HTML5 with JavaScript and CSS3. Course Code: 20480C; Duration: 5 days; Instructor-led. JavaScript code. 20480C: Programming in HTML5 with JavaScript and CSS3 Course Code: 20480C; Duration: 5 days; Instructor-led WHAT YOU WILL LEARN This course provides an introduction to HTML5, CSS3, and JavaScript. This

More information

Developing Both Responsive and Position-based mlearning and elearning Easily. mlearning: Tips and Techniques for Development and Implementation

Developing Both Responsive and Position-based mlearning and elearning Easily. mlearning: Tips and Techniques for Development and Implementation mlearning: Tips and Techniques for Development and Implementation November 14 & 15, 2013 Supplemental Materials 302 Developing Both Responsive and Position-based mlearning and elearning Easily Paul Schneider,

More information