Gets or sets a background color of the thumbnail.
$au.uploader({Get/Set Value at Runtime
converters : [
{
//...other params...
thumbnailBgColor: "#FFFFFF",
//...other params...
}
]
})
$au.uploader('uploaderID').converters().get(index).thumbnailBgColor(value);
value = $au.uploader('uploaderID').converters().get(index).thumbnailBgColor();
Type: String
A background color of the thumbnail. This color is used when the thumbnail should be created for an image with transparency.
The color string should be specified in a hex representation of the RGB triad in HTML-style syntax (#rrggbb).
Default value is "#FFFFFF".
This property makes sense only if the mode property has the Thumbnail
value.