RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
WebAdapt.TAdapterHiddenFieldOption Enumeration

TAdapterHiddenFieldOptions identifies the types of hidden fields an adapter adds to generated HTML forms.

Pascal
TAdapterHiddenFieldOption = (
  hoOrigValues,
  hoMode,
  hoRecordKeys
);
C++
enum TAdapterHiddenFieldOption {
  hoOrigValues,
  hoMode,
  hoRecordKeys
};

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.  

 

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!