Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Calling the plugin in an application running through our Mobile Client is a matter of using some javascript coding. The following is a simple example of a barcode application that should give a proper idea of how to create a Rich Display application that uses barcode scanning.

This application consists of one Output field bound to the variable "code", a Textbox bound to the same field, a "scan" button that will trigger the barcode scanning on a mobile device, a "save" button that will submit the barcode read back to the RPG code, and an exit button that closes the application. The following screenshots show the values for all the properties of these items.Image Removed  Image Removed
Image Removed;Image Removed
Image Removed;Image Removed
Image Removedfor the scan button, as well as the javascript code needed for the onclick event of the button.

  Image Added Image Added 

What the code is doing is defining a success and failure function that will be passed along to the scan function of the scanner object. These functions will fire depending on whether your barcode reader is successful in scanning a given barcode or not. Inside of these functions we define the behavior we wish to occur depending on the context. For both of these functions a parameter will be passed that gives the relevant info needed; in a success function the object that is passed contains a "text" property that contains the value of the barcode scanned and a "format" property that contains the format type of the barcode scanned. In a failure function the object passed is just a string containing the reason for the failure. You can see in the success function we are changing the value of the "code" textbox to be equal to the "text" property of the passed object called "result"; this changes the texbox's value to the scanned barcode's value. The if statement surrounding the scanner variable and scan call is checking to see if you are on mobile running phonegap (which our client uses) first. If not it will automatically call the failure function (in this example nothing is passed into it, but you could pass it a string explaining that you are not on a mobile device), which simply throws an alert that displays the error.

Here is the code driving this screen: Image Added

The exit button is bound to the btnExit indicator, which ends the program. The save button has a "pui.click()" call in it's "onclick" property which submits the screen to the code.
Image Added Image Added

.