Tuesday, January 29, 2019
Call Dynamic Actions via JavaScript code
Oracle APEX has four dynamic action event types. In this post we will describe how to call dynamic actions of type browser event and custom event via JavaScript .
Call Browser Events(change,click,Keyup,…) below code will call a dynamic action that has been defined for click event on a button with “mybtn” id:
apex.event.trigger('#mybtn','click');
Call dynamic action with custom event:
Create your dynamic action as below:
When->
Event: Custom
Custom Event: myEventName
Selection Type: JavaScript Expression
JavaScript Expression:document
Client-side Condition->
JavaScript Expression: document
Then call your dynamic action in JavaScript code as below:
$.event.trigger(document.'myEventName');
Friday, January 18, 2019
Using Intro.js in Oracle APEX
Using Intro.js to create a step-by-step guide and feature introduction in Oracle APEX.
When new users visit your website or product you should demonstrate your product features using a step-by-step guide. Even when you develop and add a new feature to your product, you should be able to represent them to your users using a user-friendly solution. Intro.js is developed to enable web and mobile developers to create a step-by-step introduction easily. Intro.js is open-source and free to use.
You can visit https://introjs.com to find more information about Intro.js
When new users visit your website or product you should demonstrate your product features using a step-by-step guide. Even when you develop and add a new feature to your product, you should be able to represent them to your users using a user-friendly solution. Intro.js is developed to enable web and mobile developers to create a step-by-step introduction easily. Intro.js is open-source and free to use.
You can visit https://introjs.com to find more information about Intro.js
Friday, January 11, 2019
Using Stimulsoft Reports.JS in Oracle APEX
The idea and copyright comes from stimulsoft GitHub .You can visit stimulsoft GitHub repository via this link https://github.com/stimulsoft/Samples-JS/tree/master/JavaScript for more information and complete documentation.
Stimulsoft Reports.JS builds reports using only JavaScript and HTML5. It can be used in any JavaScript application. This significantly expands the list of supported devices from desktop computers to mobile devices. You can visit stimulsoft.com/en/products/reports-js to find more information about this tools.
For this blog I create a report file of type JSON data source in advance via Stimulsoft report designer.
Subscribe to:
Posts (Atom)