Gets or sets a border style of Image Uploader.
$au.uploader({
//...other params...
borderStyle: "Fixed3D",
//...other params...
})
Get/Set Value at Runtime
$au.uploader('uploaderID').borderStyle(value);
value = $au.uploader('uploaderID').borderStyle();
Type: String
The Image Uploader border style.
The following values are supported:
| Value | Description |
|---|---|
| None | No border. |
| Fixed3D | 3D-like border style. |
| FixedSingle | Classic single line border style. |
Default value is "Fixed3D".