today:
233
yesterday:
219
Total:
1,004,149

QR Code plugin

admin 2017.11.30 13:44 Views : 1587

QR Code plugin

Self contained QR Code item plugin for the Oracle Application Express.

Plugin simply renders value of the item as a QR code. Users can easily scan the QR code with their smart phones directly from the screen or print the page and use it as a ticket.

QR codes are generated using JavaScript - directly in the browser. Plugin does not depend on any external QR generator service.

Demo: http://apex.oracle.com/pls/apex/f?p=QRDEMO

More about QR codes: http://en.wikipedia.org/wiki/QR_code

Follow @apexindublin

##Installation

  • Import src/item_type_plugin_com_jannavratil_apex_qr.sql into your application
    • There are no associated database objects
    • Javascript library is contained in the plugin (no need to copy .js files onto web server)
  • Create a Page item - select Plug-ins - QR Code Item
  • Set the source value for the item
  • Run the page!

##Plugin attributes QR plugin has following custom component attributes

  • Size: Height and Width of the QR code in pixels - default 200
  • Color: Color of the QR code - default #000000 (black)
  • Background: Background color - default #FFFFFF (white)

For performance and scalability reasons you can also store JavaScript file (src/qrcode.min.js) on your Web Server. You would need to change the "File Prefix" plugin attribute accordingly (e.g. from #PLUGIN_PREFIX# to #IMAGE_PREFIX#).

###Dynamic actions (optional) Dynamic actions can be used to update QR code on the page in a real time. Each QR Code item has a dedicated JavaScript function renderQR_#ITEM_NAME#(newValue).

To update QR code in real time create dynamic action "Ececute JavaScript Code" with following code:

renderQR_#ITEM_NAME#('New Value');

e.g. renderQR_P100_MYQRCODE($x("P100_MYVALUE").value);

###Examples There are three examples in the demo application (examples/qr-code-demo.sql) on page 101:

  • First is the basic use - QR code is updated when page is submitted (Apply button)
  • Second: The QR code is updated each time user changes the value - Dynamic action (Event = Key Release)
  • Third is based on a timer - see Page Source / Execute when Page Loads

##Compatibility

  • Developed with APEX 4.2
  • Tested with following browsers: Firefox, Chrome, IE11, Safari (iPhone)
  • Tested with following QR code scanners: scan.me, RedLaser, Google Authenticator, HDE OTP

##License

  • The MIT License (MIT)
  • See LICENSE-MIT for details
No. Subject Author Date Views
66 DELETE PROCESS admin 2016.04.28 158
65 Using SQL*Plus to Unlock and Change Passwords admin 2023.06.04 159
64 INSERT PROCESS admin 2016.04.28 160
63 SQL SELECT DISTINCT Statement admin 2016.04.29 161
62 JAVA for delete admin 2016.04.28 162
61 Delete Message - Are you sure you want to delete this object? admin 2016.04.28 166
60 TAP ( Main & Sub ) / Button 의 Switch admin 2016.04.28 166
59 UPDATE PROCESS admin 2016.04.28 167
58 CREATING A TABLE / SEQUENCE / TRIGGER admin 2016.04.28 172
57 EXPORT & IMPORT admin 2016.05.01 175
56 CREATE TABLESPACE admin 2016.04.28 177
55 Captcha Test file admin 2016.04.18 178
54 Apex setup procedure admin 2016.04.28 182
53 TABLE PRINT admin 2018.06.18 186
52 How to convert DATE to NUMBER admin 2018.05.27 198
51 MISSIONARY_SUB admin 2018.06.25 199
50 Name Show admin 2016.04.28 203
49 use a validation function for an element in apex 5.0 admin 2018.05.19 209
48 IF/ELSE ... CASE WHEN admin 2018.06.25 209
47 All Data DELETE from Table admin 2018.05.10 211