Style of the grid in AdvancedDetails
view.
<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>
getImageUploader("ImageUploaderID").setAdvancedDetailsGridLineStyle(value); value = getImageUploader("ImageUploaderID").getAdvancedDetailsGridLineStyle();
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
.
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".