Versions Compared

Key

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



Note
titleContent Freeze

As of July 25th, 2023, there is a content freeze on this page.

Textboxes are the most commonly used input fields.  All green-screen input fields will be automatically converted to textboxes. A textbox is a basic form element that allows the user to input text.

...

In this case, a URL is supplied in the properties box. Genie will post a field called query to the URL (typically a CGI program written in RPG, PHP, or Java) and the program must return the options in the correct format as shown in the example below.  In this example, five results are being returned.

Code Block

{success:true,
 response:{
  "colWidths":[30,7],
  "results":[
    {"CNAME":"CLIMBING ACCESSORIES",          "CATID":"81"},
    {"CNAME":"CLIMBING HARDWARE",             "CATID":"77"},
    {"CNAME":"CLIMBING PITONS",               "CATID":"76"},
    {"CNAME":"CLOTHING",                      "CATID":"20"},
    {"CNAME":"CLIMBING",                      "CATID":"2"}
            ]
          }
}

...