Warning Older Docs! - You are viewing documentation for a previous released version of RhoMobile Suite.

UpcEanSupplemental5 Decoder Setting

The UpcEanSupplemental5 Decoder Setting is used to enable or disable upcEanSupplemental5 supplemental barcodes.

Syntax

upcEanSupplemental5 (Decoder Setting) <META> Syntax

<META HTTP-Equiv="scanner" content="upcEanSupplemental5:[parameter]">

upcEanSupplemental5 JavaScript Object Syntax:
By default the JavaScript Object 'scanner' will exist on the current page and can be used to interact directly with the upcEanSupplemental5.
To Set upcEanSupplemental5 parameters via JavaScript use the following syntax: scanner.Parameter = Value;

e.g. scanner.upcEanSupplemental5 = Value;
UpcEanSupplemental5 Ruby Object Syntax:
By default the Ruby Object 'Scanner' will exist on the current page and can be used to interact directly with the UpcEanSupplemental5.
To Set UpcEanSupplemental5 parameters via Ruby use the following syntax: Scanner.Parameter = Value

e.g. Scanner.upcEanSupplemental5 = Value

Parameters

Items listed in this section indicate parameters, or attributes which can be set.

Name Possible Values Description Default Value
upcEanSupplemental5:[Value] true/false Enables/Disables the supplemental barcode decoding. Note you must have upcEanSupplementalMode:always set for this parameter to take effect Device specific

Remarks

#

Picklist mode

UPC EAN Supplemental 5 is not compatible with picklist mode.

Requirements

RhoElements Version 1.0.0 or above
Supported Devices All supported devices.
Minimum Requirements Scanner or Imager module and device that supports decoding upcEanSupplemental5 barcodes.
Persistence Transient - Decoder settings are only guaranteed to persist until the Scanner is disabled

HTML/JavaScript Examples

The following example enables the scanner to decode upcEanSupplemental5 barcodes:

<META HTTP-Equiv="scanner" Content="allDecoders:enabled">
<META HTTP-Equiv="scanner" Content="upcEanSupplementalMode:always">   
<META HTTP-Equiv="scanner" Content="upcEanSupplemental5:true">
<META HTTP-Equiv="scanner" Content="enabled">

The following example enables the scanner to decode upcEanSupplemental5 barcodes:

<META HTTP-Equiv="scanner" Content="allDecoders:enabled;upcEanSupplementalMode:always;upcEanSupplemental5:true;enabled">

The following example enables the scanner to decode upcEanSupplemental5 barcodes:

<META HTTP-Equiv="scanner-allDecoders" Content="enabled">
<META HTTP-Equiv="scanner-upcEanSupplementalMode" Content="always">   
<META HTTP-Equiv="scanner-upcEanSupplemental5" Content="true">
<META HTTP-Equiv="scanner-enabled" Content="SCN1">
Back to Top