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

UpcaReportCheckDigit Decoder Setting

The UpcaReportCheckDigit Decoder Setting is used to set the upca ReportCheckDigit property which enables reporting of the bar code check digit(s).

Syntax

upcaReportCheckDigit (Decoder Setting) <META> Syntax

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

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

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

e.g. Scanner.upcaReportCheckDigit = Value

Parameters

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

Name Possible Values Description Default Value
upcaReportCheckDigit:[Value] true/false Enables/Disables reporting of the check digit. Device specific

Requirements

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

HTML/JavaScript Examples

The following example enables the scanner to read only upca labels with the ReportCheckDigit property set:

<META HTTP-Equiv="scanner" Content="upca:enabled">
<META HTTP-Equiv="scanner" Content="upcaReportCheckDigit:true">
<META HTTP-Equiv="scanner" Content="enabled">

The following example enables the scanner to read only upca labels with the ReportCheckDigit property set:

<META HTTP-Equiv="scanner" Content="upca:enabled;upcaReportCheckDigit:true;enabled">

The following example enables the scanner to read only upca labels with the ReportCheckDigit property set:

<META HTTP-Equiv="scanner-upca" Content="enabled">
<META HTTP-Equiv="scanner-upcaReportCheckDigit" Content="true">
<META HTTP-Equiv="scanner-enabled" Content="SCN1">
Back to Top