jet and apex - pic. · pdf fileoracle world odtug washington • june 22-26 oracle ace...

Post on 22-Mar-2018

240 Views

Category:

Documents

3 Downloads

Preview:

Click to see full reader

TRANSCRIPT

Make your APEX Applications fly using

JET components

A Deep Dive into APEX JET Charts

3

What is Oracle JET

Copyright © 2017 APEX Consulting

APEX JET ChartsDemonstration

Copyright © 2017 APEX Consulting

Let’s start with a chartDemonstration

Bring your charts to life

• Use Dynamic Actions to change JET options

$("#bar_jet").ojChart({stack: 'off'});

• Use localStorage to remember options

myStorage.setItem("stack", "off");

• Use JavaScript code to activate remembered options

function( options ){ options.stack = myStorage.getItem("stack"); return options; }

Copyright © 2017 APEX Consulting

But wait…there’s morePlugins to the rescue!

UNDERDOCUMENTED FEATURE

A JET Charts Plugin : Building Blocks

• A simple PL/SQL render function

• A simple PL/SQL ajax function

• A simple JavaScript call

• A simple SQL query

Copyright © 2017 APEX Consulting

Read / Set JET Chart dataUse a JET Chart as an input item

Read / Set JET Chart data

• Disable the readonly option

• Use the ojoptionchange event to listen to changes

• Use the data payload to find the new value

• Enhance JET Chart

• Create a JET Chart Plugin

• Use JET Chart as an input item

Q & A @roelh

roel@apexconsulting.nlhttp://www.apexconsulting.nl

@roelhroel@apexconsulting.nl

http://www.apexconsulting.nl

Copyright © 2016 APEX Consulting

top related