WebAdapt.TAdapterHiddenFieldOption
Delphi
type TAdapterHiddenFieldOption = (hoOrigValues, hoMode, hoRecordKeys)
C++
enum TAdapterHiddenFieldOption : unsigned char { hoOrigValues, hoMode, hoRecordKeys };
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
| enum | public | WebAdapt.pas WebAdapt.hpp |
WebAdapt | WebAdapt |
Description
TAdapterHiddenFieldOptions identifies the types of hidden fields an adapter adds to generated HTML forms.
Adapters can add hidden fields to HTML forms that are then passed back in HTML request messages that originate from the form. TAdapterHiddenFieldOptions describes the types of hidden fields that an adapter needs to add to function properly. It represents zero or more TAdapterHiddenFieldOption values.
The following table lists the possible values:
| Value | Meaning |
|---|---|
|
hoOrigValues |
Hidden fields represent fields from the adapter and the values of those fields at the point when the form is generated. |
|
hoMode |
Hidden fields indicate the mode of the adapter. |
|
hoRecordKeys |
Hidden fields represent name/value pairs that allow the adapter to locate a record. |