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

UpcEanBooklandFormat Decoder Setting

The UpcEanBooklandFormat Decoder Setting is used to specify the bookland format to use for UPC EAN bookland barcodes.

Syntax

upcEanBooklandFormat (Decoder Setting) <META> Syntax

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

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

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

e.g. Scanner.upcEanBooklandFormat = Value

Parameters

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

Name Possible Values Description Default Value
upcEanBooklandFormat:[Value] Isbn10 / Isbn13 Isbn10 causes 978 bookland barcodes to be reported in 10 digit mode. Isbn13 causes 978/979 bookland barcodes to be transmitted as ean13 as per 2007 isbn-13 protocol. Device specific

Requirements

RhoElements Version 1.0.0 or above
Supported Devices All supported devices except: Enterprise Tablet.
Minimum Requirements Scanner or Imager module and device that supports decoding of upcEanBookland 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 read barcodes with the upcEanBooklandFormat property set

<META HTTP-Equiv="scanner" Content="allDecoders:enabled">
<META HTTP-Equiv="scanner" Content="upcEanBooklandFormat:true">
<META HTTP-Equiv="scanner" Content="enabled">
Back to Top