Enables or disables the specified standard POST field.
$au.uploader('uploaderID').metadata().enableStandardField(name, enable);
Type: String
The name of the standard POST field to enable/disable.
Type: Boolean
If true
, the specified standard POST field is uploaded; otherwise, this filed in not send to a server.
The name parameter can contain particular indices or use the following placeholders:
Current index of the file.
var u = $au.uploader('uploaderID'); u.metadata().enableStandardField("Tag_[itemIndex]", false);
Current index of the converted file.
var u = $au.uploader('uploaderID'); u.metadata().enableStandardField("File[converterIndex]Size_[itemIndex]", false);