<kendo:qRCode>
A JSP wrapper for Kendo UI QRCode.
Configuration Attributes
background java.lang.String
The background color of the QR code. Accepts a valid CSS color string, including hex and rgb.
Example
<kendo:qRCode background="background">
</kendo:qRCode>
color java.lang.String
The color of the QR code. Accepts a valid CSS color string, including hex and rgb.
Example
<kendo:qRCode color="color">
</kendo:qRCode>
encoding java.lang.String
The encoding mode used to encode the value.The possible values are: "ISO_8859_1" - supports all characters from the ISO/IEC 8859-1 character set. or "UTF_8" - supports all Unicode characters..
Example
<kendo:qRCode encoding="encoding">
</kendo:qRCode>
errorCorrection java.lang.String
The error correction level used to encode the value.The possible values are: "L" - approximately 7% of the codewords can be restored.; "M" - approximately 15% of the codewords can be restored.; "Q" - approximately 25% of the codewords can be restored. or "H" - approximately 30% of the codewords can be restored..
Example
<kendo:qRCode errorCorrection="errorCorrection">
</kendo:qRCode>
padding float
Sets the minimum distance in pixels that should be left between the border and the QR modules.
Example
<kendo:qRCode padding="padding">
</kendo:qRCode>
renderAs java.lang.String
Sets the preferred rendering engine. If it is not supported by the browser, the QRCode will switch to the first available mode.The supported values are: "canvas" - renders the widget as a Canvas element, if available. or "svg" - renders the widget as inline SVG document, if available.
Example
<kendo:qRCode renderAs="renderAs">
</kendo:qRCode>
size java.lang.Object
Specifies the size of a QR code in pixels (i.e. "200px"). Numeric values are treated as pixels. If no size is specified, it will be determined from the element width and height. In case the element has width or height of zero, a default value of 200 pixels will be used.
Example
<kendo:qRCode size="size">
</kendo:qRCode>
value java.lang.Object
Sets the value of the QRCode. More about the the value of the QRCode can be found in the Encoding documentation article.
Example
<kendo:qRCode value="value">
</kendo:qRCode>
Configuration JSP Tags
kendo:qRCode-border
The border of the QR code.
More documentation is available at kendo:qRCode-border.
Example
<kendo:qRCode>
<kendo:qRCode-border></kendo:qRCode-border>
</kendo:qRCode>
kendo:qRCode-overlay
The overlay configuration which alows you to choose from predefined layouts or insert a custom image.
More documentation is available at kendo:qRCode-overlay.
Example
<kendo:qRCode>
<kendo:qRCode-overlay></kendo:qRCode-overlay>
</kendo:qRCode>