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

Size: px
Start display at page:

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

Transcription

1 Practical Dynamic Actions Intro Jorge Rimblas 1.1

2 Jorge Rimblas Senior APEX rimblas.com/blog Contributor to "Expert Oracle Application Express, 2nd Edition" with "Themes & Templates" chapter Oracle DB since 1995 APEX since it was HTMLDB in 2004 Always involved in web technologies jrimblas in OTN Forums 1. 2

3 Age: 13 years! Staff: 80+ employees 68 consultants/developers 2015: 60% Growth APEX Solutions: 12 Years! Largest APEX practice in North America Oracle Center of Excellence 1. 3

4 Agenda Browser events Dynamic Action Structure Demos AJAX Advanced Dynamic Actions 2

5 Background 3. 1

6 Your static web pages are "alive" 3. 2

7 Ok, maybe not "alive", but they are not just static. 3.3

8 With JavaScript can affect the structure (this means changing the HTML) 3. 4

9 With JavaScript can affect the look (this means changing the CSS and Styles) 3. 5

10 Definitions 3. 6

11 Client Side 3. 7

12 Client Side Server Side 3. 8

13 Dynamic Actions are all about Client Side " activities " Events 4

14 Browser Events 5. 1

15 Change Page Load Click Scroll Resize Key Press 5. 2

16 Any Browser Event 5. 3

17 Custom Events! 5. 4

18 Browser Events

19 APEX 4.2 APEX

20 Actions 6. 1

21 Component Actions Hide/Show Disable/Enable Clear Set Value etc

22 Style Actions Set Class Remove Class Set Style 6. 3

23 Navigation Actions Submit Page Cancel Dialog Close Dialog APEX

24 Notification Actions Alert Confirm 6. 5

25 "Other" Actions Execute JavaScript Code Execute PL/SQL Code Plugins etc... More about this later 6. 6

26 Anatomy of a Dynamic Action 7. 1

27 When event [Optional Client Side Condition] When True What to do? [Affected Elements] When False What to do? [Affected Elements] 7. 2

28 When event [Optional Client Side Condition] When True True Actions When False False Actions 7. 3

29 Anatomy of a Dynamic Action APEX view 8. 1

30 Event/When? When will the Dynamic Action execute? On click On item (data) change On Focus On Page Load On (any) browser event etc 8. 2

31 Where? Where will the event happen? 8. 3

32 Where? Where will the event happen? Item(s) Button Region jquery Selector JavaScript Expression 8. 4

33 APEX 4.2 vs APEX

34 Demo:Hide &Show 9. 1

35 Two Buttons to Hide/Show P

36 Builder Tabs 9. 3

37 P20

38 P20 With No Dynamic Actions 9. 4

39 Show Text Item "Enter User" Hide List Item "Select User" Show "Switch to Select User" Button Hide "Switch to Enter User" Button Show List Item "Select User" Hide Text Item "Enter User" Show "Switch to Enter User" Button Hide "Switch to Select User" Button 9. 56

40 Disable & Enable Sometimes a good alternative to Hide & Show 9. 7

41 Demo:Hide &Show Conditional 10. 1

42 P25

43 Structure Condition 10. 2

44 Condition Detail Condition

45 Several Condition Options 10. 5

46 Demo:Set Value 11. 1

47 P30

48 Often used as part of several True Actions. Often used to set a hidden item Hidden Item needs: "Value Protected" = No Equivalent to $s API $s("{item}", "{VALUE}"); // Set to today $s("p30_log_date", "&P30_TODAY."); // Clear date $s("p30_log_date", "");

49 Demo: Key Release Uppercase Code 12. 1

50 P40

51 Set Value action Event

52 Name to Uppercase Code this.triggeringelement.value.touppercase().replace(/\s+/g, '_').substring(0, 20); 1. Value of the triggeringelement 2. Make it uppercase 3. Globally Replace spaces (\s) with "_" 4. Only return the first 20 characters 12. 4

53 Demo:Change & Refresh 13. 1

54 P110

55 Don't forget: Page Items to Submit

56 Inspect Submission

57 P110_DEPTNO is sent

58 AJAX asynchronous JavaScript and XML group of interrelated Web development techniques used on the client-side to create asynchronous Web applications Wikipedia: en.wikipedia.org/wiki/ajax_(programming) 14. 1

59 Client Side AJAX Server Side 14. 2

60 JavaScript SQL PL/SQL 14. 3

61 Demo: AJAX 15. 1

62 Multiple Actions It's easy! 15. 2

63 P215

64 Two Different DA Assign Role 1. Remove Role

65 Assign Role 1. Event: On Button Click 2. Insert new role 3. Refresh Role Dropdown 4. Refresh Report insert into app_user_roles ( username, role_key) values ( :P215_USERNAME, :P215_ROLE_KEY); 15. 5

66 Remove Role 1. Event: On.deleteRow Click 2. Delete role 3. Refresh Role Dropdown 4. Refresh Report delete from app_user_roles where id = :P215_UR_ID; 15. 6

67 Remove Role 1. Event: On.deleteRow Click 2. Ask for Confirmation 3. Use "Set Value" to save ID of clicked row 4. Delete role 5. Give Confirmation 6. Refresh Role Dropdown 7. Refresh Report 15. 7

68 Get the ID value this.triggeringelement.getattribute("data-id"); this.triggeringelement.dataset.id 15. 8

69 Get the ID value this.triggeringelement.dataset.id 15. 9

70 Dataset / Data Attributes // data-id="{value}" this.triggeringelement.dataset.id // data-active="yes" this.triggeringelement.dataset.active // data-selected="yes" this.triggeringelement.dataset.selected // data-lineid="123" this.triggeringelement.dataset.lineid // data-rownum="2" this.triggeringelement.dataset.rownum

71 Event Scope Static Dynamic Once 16. 1

72 Static Dynamic Once 16. 2

73 Advanced Dynamic Actions 17. 1

74 Built-in JavaScript Objects this.triggeringelement this.browserevent this.data 17. 2

75 triggeringelement Available inside the DA JavaScript var el = this.triggeringelement; var $el = $(this.triggeringelement); 18. 1

76 Name to Uppercase Code this.triggeringelement.value.touppercase().replace(/\s+/g, '_').substring(0, 20); 1. Value of the triggeringelement 2. Make it uppercase 3. Globally Replace spaces (\s) with "_" 4. Only return the first 20 characters 18. 2

77 Complex Page APEX

78 Complex Page APEX

79 Resources Download Demo App (coming soon!) JavaScript.com dynamic-actions.com rimblas.com/blog/2014/06/easy-prototyping-when-using-apex-da- Easy Prototyping with triggeringelement ( triggeringelement/ ) Install & Review Packaged Application: "Sample Dynamic Actions" 20. 1

80 Sample Dynamic Actions 20. 2

81 20. 3

82 Q&A Practical Dynamic Actions Jorge rimblas.com/blog 21

83 22

Senior APEX rimblas.com/blog. Co-author of "Expert Oracle Application Express, 2nd Edition" with "Themes & Templates" chapter

Senior APEX rimblas.com/blog. Co-author of Expert Oracle Application Express, 2nd Edition with Themes & Templates chapter Hooked on Classic (Reports) Learn tips & techniques to make them sing Jorge Rimblas 1.1 Jorge Rimblas Senior APEX Consultant @rimblas rimblas.com/blog Co-author of "Expert Oracle Application Express, 2nd

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

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

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

SharePoint List Booster Features

SharePoint List Booster Features SharePoint List Booster Features Contents Overview... 5 Supported Environment... 5 User Interface... 5 Disabling List Booster, Hiding List Booster Menu and Disabling Cross Page Queries for specific List

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

Iframes when necessity calls for them

Iframes when necessity calls for them Iframes when necessity calls for them Speaker Mirela Georgescu Date 22-03-2018 Email mirela.georgescu@transfer-solutions.com WWW.TRANSFER-SOLUTIONS.COM Profile 1995 Founded In a close relationship with

More information

Manipulating Database Objects

Manipulating Database Objects Manipulating Database Objects Purpose This tutorial shows you how to manipulate database objects using Oracle Application Express. Time to Complete Approximately 30 minutes. Topics This tutorial covers

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

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

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

Custom Contact Forms Magento 2 Extension

Custom Contact Forms Magento 2 Extension Custom Contact Forms Magento 2 Extension User Manual This is the user manual of Magento 2 Custom Contact Forms v100.0.0 and was last updated on 29-06-2017. To see what this extension can do, go to the

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

A Closer Look at XPages in IBM Lotus Domino Designer 8.5 Ray Chan Advisory I/T Specialist Lotus, IBM Software Group

A Closer Look at XPages in IBM Lotus Domino Designer 8.5 Ray Chan Advisory I/T Specialist Lotus, IBM Software Group A Closer Look at XPages in IBM Lotus Domino Designer 8.5 Ray Chan Advisory I/T Specialist Lotus, IBM Software Group 2008 IBM Corporation Agenda XPage overview From palette to properties: Controls, Ajax

More information

Professional Course in Web Designing & Development 5-6 Months

Professional Course in Web Designing & Development 5-6 Months Professional Course in Web Designing & Development 5-6 Months BASIC HTML Basic HTML Tags Hyperlink Images Form Table CSS 2 Basic use of css Formatting the page with CSS Understanding DIV Make a simple

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

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

PlayerLync Forms User Guide (MachForm)

PlayerLync Forms User Guide (MachForm) PlayerLync Forms User Guide (MachForm) Table of Contents FORM MANAGER... 1 FORM BUILDER... 3 ENTRY MANAGER... 4 THEME EDITOR... 6 NOTIFICATIONS... 8 FORM CODE... 9 FORM MANAGER The form manager is where

More information

MY MEDIASITE. https://mediasite.ecu.edu/ms/mymediasite

MY MEDIASITE. https://mediasite.ecu.edu/ms/mymediasite MY MEDIASITE https://mediasite.ecu.edu/ms/mymediasite My Mediasite provides tools for managing your recordings. All faculty have access to My Mediasite and the ability to download the Desktop Recorder.

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

Oracle Application Express 5.1

Oracle Application Express 5.1 Oracle Application Express 5.1 New Features [Name] [Title] December 2016 2 Agenda 1 2 3 4 5 6 7 Oracle Application Express Overview Interactive Grid Oracle JET Charts Universal Theme Productivity Improvements

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

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

Full Stack Web Developer

Full Stack Web Developer Full Stack Web Developer Course Contents: Introduction to Web Development HTML5 and CSS3 Introduction to HTML5 Why HTML5 Benefits Of HTML5 over HTML HTML 5 for Making Dynamic Page HTML5 for making Graphics

More information

Connect Databases to AutoCAD with dbconnect Nate Bartley Test Development Engineer autodesk, inc.

Connect Databases to AutoCAD with dbconnect Nate Bartley Test Development Engineer autodesk, inc. Connect Databases to AutoCAD with dbconnect Nate Bartley Test Development Engineer autodesk, inc. GD22-4 1 2 Agenda Introduction Overview of dbconnect Configure a data source Connect database to AutoCAD

More information

<Insert Picture Here> Oracle SQL Developer: PL/SQL Support and Unit Testing

<Insert Picture Here> Oracle SQL Developer: PL/SQL Support and Unit Testing 3 Oracle SQL Developer: PL/SQL Support and Unit Testing The following is intended to outline our general product direction. It is intended for information purposes only, and may not

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

PHP / MYSQL DURATION: 2 MONTHS

PHP / MYSQL DURATION: 2 MONTHS PHP / MYSQL HTML Introduction of Web Technology History of HTML HTML Editors HTML Doctypes HTML Heads and Basics HTML Comments HTML Formatting HTML Fonts, styles HTML links and images HTML Blocks and Layout

More information

Newsletter Popup v3.x Configuration for Magento 2

Newsletter Popup v3.x Configuration for Magento 2 Newsletter Popup v3.x Configuration for Magento 2 From Plumrocket Documentation Contents 1. Configuring Newsletter Popup 3.x Extension for Magento 2 2. Managing Newsletter Popups 3. Managing Newsletter

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

Global Variables Interface

Global Variables Interface WKA Technologies Global Variables Interface This document explains all options of Global Variable Interface. 1 WKA Technologies Pvt Ltd. About Global Variables Interface Variables hold information about

More information

Imagination To Realization

Imagination To Realization Imagination To Realization Introduction to HTML DB (HOT) Presented by: Bih-Shya Gau SunGard Higher Education Monday, April 3, 2006 3:30 5:30 pm April 2-5 Orlando, Florida Session Rules of Etiquette Please

More information

ASP.NET AJAX adds Asynchronous JavaScript and XML. ASP.NET AJAX was up until the fall of 2006 was known by the code-known of Atlas.

ASP.NET AJAX adds Asynchronous JavaScript and XML. ASP.NET AJAX was up until the fall of 2006 was known by the code-known of Atlas. Future of ASP.NET ASP.NET AJAX ASP.NET AJAX adds Asynchronous JavaScript and XML (AJAX) support to ASP.NET. ASP.NET AJAX was up until the fall of 2006 was known by the code-known of Atlas. ASP.NET AJAX

More information

Oracle Applica7on Express (APEX) For E- Business Suite Repor7ng. Your friend in the business.

Oracle Applica7on Express (APEX) For E- Business Suite Repor7ng. Your friend in the business. Oracle Applica7on Express (APEX) For E- Business Suite Repor7ng Your friend in the business. 1 Presenter Jamie Stokes Senior Director Oracle Technology Services Email: jstokes@smartdogservices.com LinkedIn:

More information

Promote Your Knowledge with the Power of Your Community & Oracle APEX

Promote Your Knowledge with the Power of Your Community & Oracle APEX Promote Your Knowledge with the Power of Your Community & Oracle APEX 8:30am MAY 16, 2018 CLEVELAND PUBLIC AUDITORIUM, CLEVELAND, OHIO WWW.NEOOUG.ORG/GLOC Promoting Your Knowledge with the Power of your

More information

Full Stack Web Developer

Full Stack Web Developer Full Stack Web Developer S.NO Technologies 1 HTML5 &CSS3 2 JavaScript, Object Oriented JavaScript& jquery 3 PHP&MYSQL Objective: Understand the importance of the web as a medium of communication. Understand

More information

Enterprise Reporting -- APEX

Enterprise Reporting -- APEX Quick Reference Enterprise Reporting -- APEX This Quick Reference Guide documents Oracle Application Express (APEX) as it relates to Enterprise Reporting (ER). This is not an exhaustive APEX documentation

More information

Overview

Overview HTML4 & HTML5 Overview Basic Tags Elements Attributes Formatting Phrase Tags Meta Tags Comments Examples / Demos : Text Examples Headings Examples Links Examples Images Examples Lists Examples Tables Examples

More information

Designing Reports in Power BI Desktop using Bookmarks and Drillthrough

Designing Reports in Power BI Desktop using Bookmarks and Drillthrough Designing Reports in Power BI Desktop using Bookmarks and Drillthrough Download Slides & PBIX Files from GitHub https://github.com/criticalpathtraining/bookmarks Critical Path Training https://www.criticalpathtrainig.com

More information

Oracle Application Express Student Guide

Oracle Application Express Student Guide www.oracle.com/academy Oracle Application Express Student Guide Contents 1. Introduction... 2 2. Logging in to Oracle Application Express... 2 3. Oracle Application Express Components... 3 4. How to add

More information

AD406: What s New in Digital Experience Development with IBM Web Experience Factory

AD406: What s New in Digital Experience Development with IBM Web Experience Factory AD406: What s New in Digital Experience Development with IBM Web Experience Factory Jonathan Booth, Senior Architect, Digital Experience Tooling, IBM Adam Ginsburg, Product Manager, Digital Experience

More information

No Programming Required Create web apps rapidly with Web AppBuilder for ArcGIS

No Programming Required Create web apps rapidly with Web AppBuilder for ArcGIS No Programming Required Create web apps rapidly with Web AppBuilder for ArcGIS By Derek Law, Esri Product Manager, ArcGIS for Server Do you want to build web mapping applications you can run on desktop,

More information

Working with Javascript Building Responsive Library apps

Working with Javascript Building Responsive Library apps Working with Javascript Building Responsive Library apps Computers in Libraries April 15, 2010 Arlington, VA Jason Clark Head of Digital Access & Web Services Montana State University Libraries Overview

More information

,

, Weekdays:- 1½ hrs / 3 days Fastrack:- 1½hrs / Day [Classroom and Online] ISO 9001:2015 CERTIFIED ADMEC Multimedia Institute www.admecindia.co.in 9911782350, 9811818122 The jquery Master Course by ADMEC

More information

Telerik Test Studio. Web/Desktop Testing. Software Quality Assurance Telerik Software Academy

Telerik Test Studio. Web/Desktop Testing. Software Quality Assurance Telerik Software Academy Telerik Test Studio Web/Desktop Testing Software Quality Assurance Telerik Software Academy http://academy.telerik.com The Lectors Iliyan Panchev Senior QA Engineer@ DevCloud Testing & Test Studio Quality

More information

Overview. Principal Product Manager Oracle JDeveloper & Oracle ADF

Overview. Principal Product Manager Oracle JDeveloper & Oracle ADF Rich Web UI made simple an ADF Faces Overview Dana Singleterry Dana Singleterry Principal Product Manager Oracle JDeveloper & Oracle ADF Agenda Comparison: New vs. Old JDeveloper Provides JSF Overview

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

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

Build Tizen HTML5 Apps w/ Sencha Architect & Sencha Touch

Build Tizen HTML5 Apps w/ Sencha Architect & Sencha Touch Build Tizen HTML5 Apps w/ Sencha Architect & Sencha Touch About me /** * About me */ Ext.create("Person", { firstname: "Stefan", lastname : "Stölzle", company : "Sencha, Inc.", //position : "Sr. Solutions

More information

BF Survey Pro User Guide

BF Survey Pro User Guide BF Survey Pro User Guide January 2011 v1.0 1 of 41 www.tamlyncreative.com.au/software/ Table of Contents Introduction... 5 Support... 5 Documentation... 5 Installation New Install... 5 Installation Upgrade...

More information

NetAdvantage for jquery SR Release Notes

NetAdvantage for jquery SR Release Notes NetAdvantage for jquery 2012.1 SR Release Notes Create the best Web experiences in browsers and devices with our user interface controls designed expressly for jquery, ASP.NET MVC, HTML 5 and CSS 3. You

More information

CMS 504: D2 for Space Contributors and Coordinators Updated: January 29, 2018

CMS 504: D2 for Space Contributors and Coordinators Updated: January 29, 2018 CMS 504: D2 for Space Contributors and s Agenda Part One What is Documentum D2? Groups: Support,, Contributor, Consumer D2 Overview: Login/Logout Main Menu User settings Workspaces Widgets Spaces Folders

More information

Where Do We Go From Here? Why Many IT Staff are Living in the Past

Where Do We Go From Here? Why Many IT Staff are Living in the Past Where Do We Go From Here? Why Many IT Staff are Living in the Past SAGE Computing Services Customised Oracle Training Workshops and Consulting Chris Muir Senior Consultant Agenda Oracle technology latest

More information

Tyler Dashboard. User Guide Version 6.0. For more information, visit

Tyler Dashboard. User Guide Version 6.0. For more information, visit Tyler Dashboard User Guide Version 6.0 For more information, visit www.tylertech.com. TABLE OF CONTENTS Tyler Dashboard... 4 Tyler Dashboard Features... 4 Browse... 5 Page... 5 Dashboard... 5 Views...

More information

Oracle Database. Installation and Configuration of Real Application Security Administration (RASADM) Prerequisites

Oracle Database. Installation and Configuration of Real Application Security Administration (RASADM) Prerequisites Oracle Database Real Application Security Administration 12c Release 1 (12.1) E61899-04 May 2015 Oracle Database Real Application Security Administration (RASADM) lets you create Real Application Security

More information

INTRODUCTION TO JAVASCRIPT

INTRODUCTION TO JAVASCRIPT INTRODUCTION TO JAVASCRIPT Overview This course is designed to accommodate website designers who have some experience in building web pages. Lessons familiarize students with the ins and outs of basic

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

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

JSN UniForm User Manual. Introduction. A simple contact form created by JSN UniForm. JSN UniForm is a Joomla form extension which helps you create

JSN UniForm User Manual. Introduction. A simple contact form created by JSN UniForm. JSN UniForm is a Joomla form extension which helps you create JSN UniForm User Manual Introduction A simple contact form created by JSN UniForm JSN UniForm is a Joomla form extension which helps you create forms quickly and easily - from normal forms to complex forms.

More information

COURSE OUTLINE MOC 20480: PROGRAMMING IN HTML5 WITH JAVASCRIPT AND CSS3

COURSE OUTLINE MOC 20480: PROGRAMMING IN HTML5 WITH JAVASCRIPT AND CSS3 COURSE OUTLINE MOC 20480: PROGRAMMING IN HTML5 WITH JAVASCRIPT AND CSS3 MODULE 1: OVERVIEW OF HTML AND CSS This module provides an overview of HTML and CSS, and describes how to use Visual Studio 2012

More information

Release Notes (Build )

Release Notes (Build ) Release Notes (Build 6.0.4660) New to this build (6.0.4660) New in build 6.0.4490 New in build 6.0.4434 OneWeb CMS 6 features Additional enhancements Changes Fixed Known Issues New to this build (6.0.4660)

More information

Manage and Generate Reports

Manage and Generate Reports Report Manager, page 1 Generate Reports, page 3 Trust Self-Signed Certificate for Live Data Reports, page 4 Report Viewer, page 4 Save an Existing Stock Report, page 7 Import Reports, page 7 Export Reports,

More information

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

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

More information

Introduction to Automation. What is automation testing Advantages of Automation Testing How to learn any automation tool Types of Automation tools

Introduction to Automation. What is automation testing Advantages of Automation Testing How to learn any automation tool Types of Automation tools Introduction to Automation What is automation testing Advantages of Automation Testing How to learn any automation tool Types of Automation tools Introduction to Selenium What is Selenium Use of Selenium

More information

Real Application Security Administration

Real Application Security Administration Oracle Database Real Application Security Administration Console (RASADM) User s Guide 12c Release 2 (12.2) E85615-01 June 2017 Real Application Security Administration Oracle Database Real Application

More information

1. Selenium Integrated Development Environment (IDE) 2. Selenium Remote Control (RC) 3. Web Driver 4. Selenium Grid

1. Selenium Integrated Development Environment (IDE) 2. Selenium Remote Control (RC) 3. Web Driver 4. Selenium Grid INTRODUCTION 1.0 Selenium Selenium is a free (open source) automated testing suite for web applications across different browsers and platforms. Selenium focuses on automating web-based applications. Testing

More information

The Oracle APEX Community at-a-glance:

The Oracle APEX Community at-a-glance: APEX New Features Overview 2 Evolution of APEX Community The Oracle APEX Community at-a-glance: 400,000+ APEX developers world-wide 20+ APEX hosting companies 100+ active blogs 30+ commercial applications

More information

ALT-TAB: Better APEX Tabs. Scott Spendolini Director & Co-Founder

ALT-TAB: Better APEX Tabs. Scott Spendolini Director & Co-Founder ALT-TAB: Better APEX Tabs Scott Spendolini Director & Co-Founder Welcome 2 ABOUT THE PRESENTER Scott Spendolini scott@sumneva.com @sspendol Ex-Oracle Employee of 10 years Senior Product Manager for Oracle

More information

Dreamweaver CS4. Introduction. References :

Dreamweaver CS4. Introduction. References : Dreamweaver CS4 Introduction References : http://help.adobe.com 1 What s new in Dreamweaver CS4 Live view Dreamweaver CS4 lets you design your web pages under realworld browser conditions with new Live

More information

Unveiling Zend Studio 8.0

Unveiling Zend Studio 8.0 Unveiling Zend Studio 8.0 Roy Ganor Project Lead Zend Studio http://twitter.com/royganor Download! Native Installers! Zend Studio Releases 2006 2007 2007 2008 2008 2009 2009 2010 2010 Studio 6.0 Studio

More information

Jquery Manually Set Checkbox Checked Or Not

Jquery Manually Set Checkbox Checked Or Not Jquery Manually Set Checkbox Checked Or Not Working Second Time jquery code to set checkbox element to checked not working. Apr 09 I forced a loop to show checked state after the second menu item in the

More information

ClassHub for Teachers. A User Guide for the Classroom

ClassHub for Teachers. A User Guide for the Classroom ClassHub for Teachers A User Guide for the Classroom Table of Contents CLASSHUB TEACHER... My Class Settings... Class List... Using Views and Screen Peek... Actions... MIRRORING... Mirroring Actions...

More information

NetAdvantage for ASP.NET Release Notes

NetAdvantage for ASP.NET Release Notes NetAdvantage for ASP.NET 2011.2 Release Notes Accelerate your application development with ASP.NET AJAX controls built on the Aikido Framework to be the fastest, lightest and most complete toolset for

More information

Installation & User Guide

Installation & User Guide Copyright 2010-2017 Cotek Systems Inc. All rights reserved. Corporate Headquarters 3722 Pleasantdale Rd Ste 6 Atlanta, GA 30340 USA Sales Support Please be patient while waiting for response. (24/7 Support!)

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

Chat Activity. Moodle: Collaborative Activities & Blocks. Creating Chats

Chat Activity. Moodle: Collaborative Activities & Blocks. Creating Chats Chat Activity The Moodle chat tool allows communication between instructors and students in real time. Unlike in discussion forums, which are a means for asynchronous communication, online chat sessions

More information

All India Council For Research & Training

All India Council For Research & Training WEB DEVELOPMENT & DESIGNING Are you looking for a master program in web that covers everything related to web? Then yes! You have landed up on the right page. Web Master Course is an advanced web designing,

More information

1. Cascading Style Sheet and JavaScript

1. Cascading Style Sheet and JavaScript 1. Cascading Style Sheet and JavaScript Cascading Style Sheet or CSS allows you to specify styles for visual element of the website. Styles specify the appearance of particular page element on the screen.

More information

CS50 Quiz Review. November 13, 2017

CS50 Quiz Review. November 13, 2017 CS50 Quiz Review November 13, 2017 Info http://docs.cs50.net/2017/fall/quiz/about.html 48-hour window in which to take the quiz. You should require much less than that; expect an appropriately-scaled down

More information

Raptor University. District Admin Training. Instructor: RAPTOR TECHNOLOGIES, LLC

Raptor University. District Admin Training. Instructor: RAPTOR TECHNOLOGIES, LLC Raptor University District Admin Training Instructor: RAPTOR TECHNOLOGIES, LLC This presentation includes instruction on the following topics to get you started using Raptor: Learning Objectives Navigating

More information

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

Developing Exceptional Mobile and Multi-Channel Applications using IBM Web Experience Factory Developing Exceptional Mobile and Multi-Channel Applications using IBM Web Experience Factory IBM Corporation 2011 Who am I? 2 Agenda Mobile web applications and Web Experience Factory Tour of Web Experience

More information

Product Questions Magento Extension

Product Questions Magento Extension Product Questions Magento Extension User Manual This is the user manual of Magento Product Questions v1.3.1 and was last updated on 23-12-2017. To see what this extension can do, go to the Magento Product

More information

ITEC447 Web Projects CHAPTER 9 FORMS 1

ITEC447 Web Projects CHAPTER 9 FORMS 1 ITEC447 Web Projects CHAPTER 9 FORMS 1 Getting Interactive with Forms The last few years have seen the emergence of the interactive web or Web 2.0, as people like to call it. The interactive web is an

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

Nintex Forms 2010 Help

Nintex Forms 2010 Help Nintex Forms 2010 Help Last updated: Monday, April 20, 2015 1 Administration and Configuration 1.1 Licensing settings 1.2 Activating Nintex Forms 1.3 Web Application activation settings 1.4 Manage device

More information

Raptor University. Building Admin Training. Instructor: RAPTOR TECHNOLOGIES, LLC

Raptor University. Building Admin Training. Instructor: RAPTOR TECHNOLOGIES, LLC Raptor University Building Admin Training Instructor: RAPTOR TECHNOLOGIES, LLC This presentation includes the following topics to get you started using Raptor: Learning Objectives Create and Manage Users

More information

fpafi/tl open source^ Drupal 6 Theming Cookbook great-looking Drupal themes Over 100 clear, step-by-step recipes to create powerful,

fpafi/tl open source^ Drupal 6 Theming Cookbook great-looking Drupal themes Over 100 clear, step-by-step recipes to create powerful, Drupal 6 Theming Cookbook Over 100 clear, step-by-step recipes to create powerful, great-looking Drupal themes Karthik Kumar fpafi/tl open source^ I I MV 1 X I I community experience distilled PUBLISHING

More information

City of Mobile GIS Web Mapping Applications: New Technology, New Expectations

City of Mobile GIS Web Mapping Applications: New Technology, New Expectations City of Mobile GIS Web Mapping Applications: New Technology, New Expectations Presenters : Scott Kearney GIS Manager Patricia Creamer GIS Analyst Background: GIS Department Developing web mapping apps

More information

RISKMAN QUICK REFERENCE GUIDE TO SYSTEM CONFIGURATION & TOOLS

RISKMAN QUICK REFERENCE GUIDE TO SYSTEM CONFIGURATION & TOOLS Introduction This reference guide is aimed at RiskMan Administrators who will be responsible for maintaining your RiskMan system configuration and also to use some of the System Tools that are available

More information

Developing Web Applications for Smartphones with IBM WebSphere Portlet Factory 7.0

Developing Web Applications for Smartphones with IBM WebSphere Portlet Factory 7.0 Developing Web Applications for Smartphones with IBM WebSphere Portlet Factory 7.0 WebSphere Portlet Factory Development Team 6 September 2010 Copyright International Business Machines Corporation 2010.

More information

Building Web Applications

Building Web Applications Building Web Applications Mendel Rosenblum CS142 Lecture Notes - Building Web Applications Good web applications: Design + Implementation Some Design Goals: Intuitive to use Don't need to take a course

More information

NetAdvantage for ASP.NET Release Notes

NetAdvantage for ASP.NET Release Notes NetAdvantage for ASP.NET 2011.1 Release Notes Accelerate your application development with ASP.NET AJAX controls built on the Aikido Framework to be the fastest, lightest and most complete toolset for

More information

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

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. 1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. ORACLE PRODUCT LOGO Oracle ADF Programming Best Practices Frank Nimphius Oracle Application Development Tools Product Management 2 Copyright

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

Get in Touch Module 1 - Core PHP XHTML

Get in Touch Module 1 - Core PHP XHTML PHP/MYSQL (Basic + Advanced) Web Technologies Module 1 - Core PHP XHTML What is HTML? Use of HTML. Difference between HTML, XHTML and DHTML. Basic HTML tags. Creating Forms with HTML. Understanding Web

More information

jquery Cookbook jquery Community Experts O'REILLY8 Tokyo Taipei Sebastopol Beijing Cambridge Farnham Koln

jquery Cookbook jquery Community Experts O'REILLY8 Tokyo Taipei Sebastopol Beijing Cambridge Farnham Koln jquery Cookbook jquery Community Experts O'REILLY8 Beijing Cambridge Farnham Koln Sebastopol Taipei Tokyo Foreword xi Contributors xiii Preface xvii 1. jquery Basics 1 1.1 Including the jquery Library

More information

Table of contents. Ajax AutoComplete Manual DMXzone.com

Table of contents. Ajax AutoComplete Manual DMXzone.com Table of contents Table of contents... 1 About Ajax AutoComplete... 2 Features in Detail... 3 The Basics: Creating a Basic AJAX AutoComplete Field... 12 Advanced: Generating an AutoComplete Field using

More information

INTERFACE FOUNDATIONS OF WEB DEVELOPMENT

INTERFACE FOUNDATIONS OF WEB DEVELOPMENT INTERFACE FOUNDATIONS OF WEB DEVELOPMENT FOUNDATIONS OF WEB DEVELOPMENT SYLLABUS Course Description Foundations of Web Development is a 10-week, part-time course where students learn the basic concepts

More information

Oracle APEX 19.1 The Golden Nuggets. Dietmar Aust Opal-Consulting, Köln

Oracle APEX 19.1 The Golden Nuggets. Dietmar Aust Opal-Consulting, Köln 1 Oracle APEX 19.1 The Golden Nuggets Dietmar Aust Opal-Consulting, Köln www.opal-consulting.de About Dietmar. 2 Dipl.-Inform. Dietmar Aust, Freelance Consultant Master's Degree in Computer Science (MSCS)

More information

This presentation is for informational purposes only and may not be incorporated into a contract or agreement.

This presentation is for informational purposes only and may not be incorporated into a contract or agreement. This presentation is for informational purposes only and may not be incorporated into a contract or agreement. SQL Developer Introducing Oracle's New Graphical Database Development Tool Craig Silveira

More information