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

CodabarNotisEditing Decoder Setting

The CodabarNotisEditing Decoder Setting is to enable Codabar Notis formatting.

Syntax

codabarNotisEditing (Decoder Setting) <META> Syntax

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

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

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

e.g. Scanner.codabarNotisEditing = Value

Parameters

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

Name Possible Values Description Default Value
codabarNotisEditing:[Value] true/false Enables/disables Notis formatting. 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 Codabar.
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 Codabar labels with the NotisEditing formatting property set to true:

<META HTTP-Equiv="scanner" Content="Codabar:enabled">
<META HTTP-Equiv="scanner" Content="Codabarnotisediting:true">
<META HTTP-Equiv="scanner" Content="enabled">

The following example enables the scanner to read only Codabar labels with the NotisEditing formatting property set to true:

<META HTTP-Equiv="scanner" Content="Codabar:enabled;Codabarnotisediting:true;enabled">

The following example enables the scanner to read only Codabar labels with the NotisEditing formatting property set to true:

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