Params Input Field

In most cases, it is used to enter free text, although it can be used to save HTTP links, date values, or refer to the application folder (as an internal link to this folder).

AttributeDescriptionRequired

label

The text is shown as a label in the user interface.

true

name

Unique field identifier.

Two fields cannot have the same name in the same task definition. The name must be unique.

true

type

Type of value. Allowed types:

  • text.
  • date.
  • link.
  • folder.

true

width

The width of the HTML element.

In the case of KCenter, the UI must use width values based on percentages, for example:

  • width="50%" will work
  • width="100px" will be ignored in the KCenter UI.

false

height

The height of the HTML element.

false

Child elements:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE report-parameters PUBLIC "-//OpenKM//DTD Report Parameters 2.1//EN"
                                   "http://www.openkm.com/dtd/report-parameters-2.1.dtd">
<report-parameters>
  <input label="From" name="from_date" type="date">
    <validator type="req" />
  </input>
</report-parameters>
Table of contents [ Hide Show ]