Style of the grid in AdvancedDetails view.
Syntax
Initialize
| JavaScript | Copy Code
|
|---|---|
<script type="text/javascript" src="iuembed.js"></script> <script type="text/javascript"> var iu = new ImageUploaderWriter("ImageUploaderID", 610, 500); //...other params... iu.addParam("AdvancedDetailsGridLineStyle", "Invisible"); //...other params... iu.writeHtml(); </script> |
|
Get/Set Value in Runtime
| JavaScript | Copy Code
|
|---|---|
getImageUploader("ImageUploaderID").setAdvancedDetailsGridLineStyle(value);
value = getImageUploader("ImageUploaderID").getAdvancedDetailsGridLineStyle();
|
|
Property Value
A member of this enumeration that specifies grid line style for Advanced Details view:
| String value | Integer value | Description |
|---|---|---|
| Invisible | 0 | No grid visible. |
| Solid | 1 | Grid is drawn with a solid line. |
| Dash | 2 | Grid is drawn with a dashed line. |
| Dot | 3 | Grid is drawn with a dotted line. |
| DashDot | 4 | Grid is drawn with dash-dotted line. |
| DashDotDot | 5 | Grid is drawn with dash-dot-dotted line. |
If unsupported string value is passed, it is interpreted as Invisible.
Note |
|---|
|
When you get this property value through the JavaScript, integer value will be returned (even if you initialize the property with a string value). |
Default value is "Invisible".
Copy Code
Note