FormData
type FormData = object
Description
Form data.
Properties
- key
string
null The form key. If the current form is a radio button, then this field contains the group key.
- value
string | boolean
null The current field value.
- tag
string
null The form tag.
The form type.
Try It
var oFormData = {key: "CompanyName", value: "OnlyOffice", type: "text"};