Created on 23 April 2018
icon_unfollowing
Login to follow
mobile-qrcode

Mobile QRCode

Stable version 1.0.0 (Compatible with OutSystems 11)
Other versions available for 10
Uploaded on 03 May 2021 by 
mobile-qrcode

Mobile QRCode

Details
QRCode.js is javascript library for making QRCode. QRCode.js supports Cross-browser with HTML5 Canvas and table tag in DOM. QRCode.js has no dependencies.
Read more

QRCode.js

QRCode.js is javascript library for making QRCode. QRCode.js supports Cross-browser with HTML5 Canvas and table tag in DOM. QRCode.js has no dependencies.

Basic Usages

<div id="qrcode"></div>
<script type="text/javascript">
new QRCode(document.getElementById("qrcode"), "https://jindo.dev.naver.com/collie");
</script>

or with some options

<div id="qrcode"></div>
<script type="text/javascript">
var qrcode = new QRCode(document.getElementById("qrcode"), {
text: "https://jindo.dev.naver.com/collie",
width: 128,
height: 128,
colorDark : "#000000",
colorLight : "#ffffff",
correctLevel : QRCode.CorrectLevel.H
});
</script>

and you can use some methods

qrcode.clear(); // clear the code.
qrcode.makeCode("https://naver.com"); // make another code.

Browser Compatibility

IE6~10, Chrome, Firefox, Safari, Opera, Mobile Safari, Android, Windows Mobile, ETC.

License

MIT License

Release notes (1.0.0)
  • Upgrade to P11
  • Cleanup code
  • Bugfix, trigger now on the OnReady event
Reviews (2)
by 
2020-05-20
in version 1.0.1
Simple, strong, perfect! Thank you very much!
by 
2019-08-16
in version 1.0.1
Wonderful  and functional application. I tried a bunch of different ones as well and had to rewrite a bunch of JS to get it to work. This one finally does the trick.  I can generate a bunch of different QR codes now  (as opposed to only one, which would be generated after OnReady).
Thank you!!
Category
User interface, Other UI components
Tags
Support options
This asset is not supported by OutSystems. You may use the discussion forums to leave suggestions or obtain best-effort support from the community, including from  who created this asset.
Dependencies
Mobile QRCode has no dependencies.
Application Objects
Mobile QRCode has 0 AOs.
Team
Compatible with
Version 11
Database:
All
Asset consumers
See all 2 consumers
Weekly downloads