Versions Compared

Key

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


Overview

This is a very simple single line text entry field used for input/output. The initialization value is set by the 'value' property is where you set a initialized value for the textbox. Whatever you place inside the . The 'value' will be present when the textbox is displayedproperty is also used to receive input in a Rich UI application through field binding.

Validation (Rich UI Only)

(Input link to validation and error messages page under Input Widgets section)Please visit the Validation and Error Messages page.

Field Binding Dialog (Rich UI Only)

(Input link to Please visit the Field Binding page under Widget section)

Field Settings

.

Input Type (Rich UI Only)

These properties are used to specify an input type The 'input type' property can be used to set the 'type' attribute of the HTML <input> element that is rendered for the textbox. These Input types are primarily used useful for mobile applications, but as the mobile device will display a different version of the keypad based on the value (i.e. numeric entry, telephone number, etc.) However, some of these input types options are supported by HTML5 capable browsers. If this field is not set a standard textbox element will be used by default.

...

URL - The url type is for input fields containing a URL address. For mobile browsers this field allows your device to recognize the email type and change the on-screen keyboard to match (giving .com options depending on the device).

Auto-Complete Choices

Auto-complete allows your textbox field to automatically suggest choices based on text entered into the textbox.

...

The auto-complete choices/values can be populated multiple ways:

1. 'choices/values' properties

  • Choice option field - Is where your fields are selected in order how you would like the auto-complete to display them.
  • Choice values field - Is where the value you want returned to your application is set.

Here are two ways to populate the choice option/values properties:

  1. Comma separated list - A simple list of values separated by just a comma (i.e. Apple, Orange, Banana)

...

  1. .
  2. JSON array format - Using JSON array format, meaning the choices/values are enclosed in a bracket with quotations and then comma separated (i.e. ["ElementOne", "ElementTwo"] ) within the choices and choice values fields also allows you to populate the auto-complete, these fields can also be bound to an RPG field (Rich UI only).

Web service - You can pass JSON through a web service such as a PHP program to complete the choices and choice value fields (see choices URL example below)2. Database-Driven Auto-Complete - See Database-Driven Auto-Complete section below.

Database-Driven Auto-Complete

This section allows choices/values to be retrieved from a database file. In order to use this, simply enter the name of the database file, the name of the choice option

 Image AddedImage Added

Choices database file - Enter the database file to use to populate your options/values. When setting your database file it's not required to qualify with library name, although you can. if the library is omitted, the application job's library list will be used.

Choice options field - Select the field(s) you would like to search by, and the name of the choice value field you wish to return the value of to your application.

  Image Removed Image Removed

Selecting Multiple Columns

use to search. If there are multiple fields specified in the choice options field this will allow you to return multiple values in the auto-complete search. However, only the first value in the field will be used to search, any other selected fields are for display only as additional columns.

Choice values field - Select the field to return a value to your application.

In the example, records will be loaded from file CATEGP. The records will be searched on field CNAME and CATID, with field CATID displaying in a second column (see below). The value in field CATID in the selected record will be returned to the program.

SQL Expressions

You can also use SQL expressions to return information in addition to just selecting database fields from the file. So in the example, using the expression TRIM(CNAMEDBLNAM) || ', ' || CATIDDBFNAM allows us to return a concatenated search value with formatting for our search, but the returned value to the application is unchanged.

This is what the SQL expression returns:

Image Added

Max Choices
The max choices property allows you to set the number of choices you will see from your database-driven selection. There is no limit to the number of choices you can show, however if there is no limit set the default is 10.

...

This property when set to true looks for records that contain your search text. When set to false the query looks for your at the start of the records to match your search text. The default for this is set to false.

Dynamic Auto-Complete

Choices URL

The choices URL property allows you to use a web service an external program to return your choice options and values by passing them using JSON formatting. A PHP script would be one example of a service custom program used to pass the values to your application. When using the choices url URL property, all database-driven auto-complete properties are ignored.

Good JSON Syntax Successful Response Example

These are values returned from an auto-complete textbox in a good example of JSON formattingsuccessful response from the external program:

Code Block

{
    "success": true,
    "response": {
        "colWidthsresults": [
            41,{
            7
        ],
        "results": [                "PNAME": "QUEST BOREAL",
                "PRID": "523"
            },
            {
                "00001PNAME": "Alpineaire Food, 58QUEST ECLIPSE",
                "CATIDPRID": "58524"
            },
            {
                "00001PNAME": "Altimiters,QUEST 13EQUINOX",
                "CATIDPRID": "13525"
            }
        ],
        "colWidths": [
            30,
            10
        {
                "00001": "Avalanche Gear, 82",
                "CATID": "82"
            }
        ]
    }
}

PHP Error Example

Code Block

]
    }
}

In the successful response you can see the fields PNAME, PRID are being set by the script and the values returned in the successful JSON. The additional colWidths is setting the column size of the widget when multiple fields are being returned (this is optional).

This is how the successful response is displayed in the application. The search criteria (Q in the example below) is posted to the program as field query.
Image Added

JSON Error Response Example

This example is JSON information returned when the script encounters an error with an external program driven auto-complete.

Code Block
{
    "success": false,
    "errorId": "08001",
    "errorText": "Authorization failure on distributed database connection attempt. SQLCODE=-30082"
}

If you are unable to get any information to display on your choice URL script you can use the showErrors() API to try and debug the reason the auto-complete is unable to display results.
showErrors() API Documentation

Example of the showErrors() API displaying the JSON error response example:

Image Added

Full PHP Script Example:

Code Block
<?php

  define("MAX", 10);
  define("DB", "S100450A");
  define("USER", "user");
  define("PASS", "password");

  $records = array();
  $query = "";
  $limit = 0;
  if (isset($_REQUEST["query"])) $query = $_REQUEST["query"];
  if (isset($_REQUEST["limit"])) $limit = intval($_REQUEST["limit"]);
 
  if ($query != "") {
    
    $query = strtoupper($query) . "%";
    if ($limit == 0 || $limit > MAX) $limit = MAX;

    // Example of error reporting.
    $con = db2_connect(DB, USER, PASS, array("i5_naming" => DB2_I5_NAMING_ON));
    if (!$con) {
    
      $response = array(
      
        "success" => false,
        "errorId" => db2_conn_error(),
        "errorText" => db2_conn_errormsg()
      
      );
      
      print json_encode($response);
      return;
    
    }

Returned JSON Error Example

This is the information returned using JSON formatting to report an error with an auto-complete textbox. This was passed from the example above.

Code Block

{
    
    // The following will not be error checked, for brevity.
    $stm = "select distinct pname, prid from rpgspcart/prodp where pname like ? order by pname";
    $stm = db2_prepare($con, $stm);   
    db2_bind_param($stm, 1, "query", DB2_PARAM_IN, DB2_CHAR);
    db2_execute($stm);
    
    $count = 0;
    while (db2_fetch_row($stm) && $count < $limit) {
    
      $record = array();
      $record["PNAME"] = trim(db2_result($stm, "PNAME"));
      $record["PRID"] = trim(db2_result($stm, "PRID"));
      
      $records[$count++] = $record;
    
    }
 
  }
 
  // "colWidths" is optional, this helps the widget to
  // size the columns when multiple fields are displayed.
 
  $return = array(
 
    "success": => falsetrue,
    "errorId":response" => array (
      "08001results" => $records,
    "errorText": "Authorization failure on distributed database connection attempt. SQLCODE=-30082"
}

If you are unable to get any information to display on your choice URL script you can use the showErrors() API to try and debug the reason the auto-complete is unable to display results.
showErrors() API Documentation

Example of the showErrors() API displaying the JSON error example:

...


      "colWidths" => array(
        db2_field_precision($stm, "PNAME"),
        db2_field_precision($stm, "PRID")
      )
    )
 
  );
 
  print json_encode($return);
 
?>  

Auto-Complete Results Template

The auto-complete results panel is built using a preset HTML template that is built into the product. CSS classes are attached to allow for custom styling. For complete control over the output, a custom HTML template can be assigned using the "results template" property. This property accepts an HTML fragment that will be inserted into the results panel for each returned record. In the HTML template, a field name within parenthesis will be replaced with the actual field data when the results HTML is generated.

For example, to make each record display as a block with 2 lines that display one field each, the "results template" property could be set to the following: 

Code Block
languagexml
<div class="autocomplete-item">
  <div class="autocomplete-col"><strong>Label one:</strong> (MYFIELD)</div>
  <div class="autocomplete-col"><strong>Label two:</strong> (MYFIELD2)</div>
</div>

The CSS classes assigned can then be used to control styling such as borders, etc.