[]
Represents an action that causes a script to be compiled and executed by the JavaScript interpreter.
new ActionSubmitForm(om, uri?): ActionSubmitForm;
Creates a new ActionSubmitForm.
ObjectManager that controls the lifetime of the ActionSubmitForm.
string
The URL of the script at the Web server that will process the submission.
ActionSubmitForm
ActionFieldsBase.constructor
new ActionSubmitForm(uri?): ActionSubmitForm;
Creates a new ActionSubmitForm.
string
The URL of the script at the Web server that will process the submission.
ActionSubmitForm
ActionFieldsBase.constructor
get canonicalDateFormat(): boolean;
Gets or sets a value indicating whether any submitted field values representing dates are converted to the standard format described in PDF specification.
boolean
set canonicalDateFormat(value): void;
Gets or sets a value indicating whether any submitted field values representing dates are converted to the standard format described in PDF specification.
boolean
void
get excludeSpecifiedFields(): boolean;
Gets or sets a value indicating whether the fields specified by the 'fields' list should be excluded for processing. By default this property is "false", which means that the fields in the list are processed. If this property is set to "true", the fields in the list are excluded from processing.
boolean
set excludeSpecifiedFields(value): void;
Gets or sets a value indicating whether the fields specified by the 'fields' list should be excluded for processing. By default this property is "false", which means that the fields in the list are processed. If this property is set to "true", the fields in the list are excluded from processing.
boolean
void
ActionFieldsBase.excludeSpecifiedFields
get fdfFormat(): FDFFormatFlags;
Gets or sets additional flags used if submitFormat is SubmitFormatType#FDF.
set fdfFormat(value): void;
Gets or sets additional flags used if submitFormat is SubmitFormatType#FDF.
void
get fields(): (string | Field)[];
Gets the list of fields that should be processed or excluded from processing (depending on the value of 'excludeSpecifiedFields') by this action. An item in this list can be either a field's name specified as a "string", or the Field object itself. An empty list means that all fields are included.
(string | Field)[]
set fields(value): void;
Gets the list of fields that should be processed or excluded from processing (depending on the value of 'excludeSpecifiedFields') by this action. An item in this list can be either a field's name specified as a "string", or the Field object itself. An empty list means that all fields are included.
(string | Field)[]
void
get htmlFormFormat(): HtmlFormFormatFlags;
Gets or sets additional flags used if submitFormat is SubmitFormatType#HtmlForm.
set htmlFormFormat(value): void;
Gets or sets additional flags used if submitFormat is SubmitFormatType#HtmlForm.
void
get id(): number;
Gets the reference to the object.
number
get includeFieldsWithNoValue(): boolean;
Gets or sets a value indicating whether the fields without a value should be included in request.
boolean
set includeFieldsWithNoValue(value): void;
Gets or sets a value indicating whether the fields without a value should be included in request.
boolean
void
get om(): ObjectManager;
Gets the owner ObjectManager instance.
get pdfFormat(): GetMethod;
Gets or sets additional flags used if submitFormat is SubmitFormatType#PDF.
set pdfFormat(value): void;
Gets or sets additional flags used if submitFormat is SubmitFormatType#PDF.
void
get submitFormat(): SubmitFormatType;
Gets or sets the format which should be used in request.
set submitFormat(value): void;
Gets or sets the format which should be used in request.
void
get uri(): FileSpecification;
Gets or sets the value defining URL of the script at the Web server that will process the submission.
set uri(value): void;
Gets or sets the value defining URL of the script at the Web server that will process the submission.
| string
| FileSpecification
| FileSpecificationProperties
void
free(): void;
Detaches the object from the ObjectManager and deallocates its memory, if possible.
void
rebind(omTo): void;
Rebinds the object from the current ObjectManager to the specified one.
The new ObjectManager for the object.
void