| Name | Description | Group | Default | Visible |
|---|---|---|---|---|
| domainrelaxlevel [int] |
Domain Relax Level Domain Relax Level |
Display | 0 | true |
| explicitlySetDomain [boolean] |
Explicitly set document domain Explicitly set document domain |
Display | false | true |
| sandbox [String] |
Sandbox Attribute Values Sandbox Attribute Values |
Display | true | |
| skipport [boolean] |
Skip port in domain Skip port in domain |
Display | true | true |
| url [String] |
Url Url |
Display | true | |
| usesandbox [boolean] |
Use Sandbox Attribute Use Sandbox Attribute |
Display | true | true |
| Name | Description | Group | Default | Visible |
|---|
| Name | Parameters | Return |
|---|---|---|
| calcTimestamp [details] | String | |
| getDomainrelaxlevel [details] | int | |
| getSandbox [details] | String | |
| getSkipPort [details] | boolean | |
| getUrl [details] | String | |
| isExplicitlySetDomain [details] | boolean | |
| isSkipport [details] | boolean | |
| isUsesandbox [details] | boolean | |
| setDomainrelaxlevel [details] | domainrelaxlevel | void |
| setExplicitlySetDomain [details] | explicitlySetDomain | void |
| setSandbox [details] | sandbox | void |
| setSkipport [details] | skipport | void |
| setUrl [details] | url | void |
| setUsesandbox [details] | usesandbox | void |
| triggerReload [details] | void |
| Name | Description | Group | Default | Visible |
|---|---|---|---|---|
| reload [String] |
Trigger Reload Trigger Reload |
Display | init | false |
| String calcTimestamp |
@Visibility(private) Workaround for strange DesignStudio lifecycle handling when calling functions via scriptting triggers |
||||||
| Source Code | return ""+new Date().getTime(); | ||||||
| int getDomainrelaxlevel |
Gets Domain Relax Level Property |
||||||
| Source Code | return this.domainrelaxlevel; | ||||||
| String getSandbox |
Gets Sandbox Attribute Values Property |
||||||
| Source Code | return this.sandbox; | ||||||
| boolean getSkipPort |
// Special get for BOOLEAN (copy of isSkipPort()) Gets Skip Port Property |
||||||
| Source Code | return this.skipport; | ||||||
| String getUrl |
Gets Url Property |
||||||
| Source Code | return this.url; | ||||||
| boolean isExplicitlySetDomain |
Gets Explicitly set document domain Property |
||||||
| Source Code | return this.explicitlySetDomain; | ||||||
| boolean isSkipport |
Gets Skip port in domain Property |
||||||
| Source Code | return this.skipport; | ||||||
| boolean isUsesandbox |
Gets Use Sandbox Attribute Property |
||||||
| Source Code | return this.usesandbox; | ||||||
| void setDomainrelaxlevel |
/START HERE PLACE FOR CUSTOM ZTL FUNCTIONS // here is the place for other custom functions // manual SETTERS Sets Domain Relax Level Property
|
||||||
| Source Code |
this.domainrelaxlevel = domainrelaxlevel; this.reload = calcTimestamp(); |
||||||
| void setExplicitlySetDomain |
Sets Explicitly set document domain Property
|
||||||
| Source Code |
this.explicitlySetDomain = explicitlySetDomain; this.reload = calcTimestamp(); |
||||||
| void setSandbox |
Sets Sandbox Attribute Values Property
|
||||||
| Source Code |
this.sandbox = sandbox; this.reload = calcTimestamp(); |
||||||
| void setSkipport |
Sets Skip port in domain Property
|
||||||
| Source Code |
this.skipport = skipport; this.reload = calcTimestamp(); |
||||||
| void setUrl |
Sets Url Property
|
||||||
| Source Code |
this.url = url; this.reload = calcTimestamp(); |
||||||
| void setUsesandbox |
Sets Use Sandbox Attribute Property
|
||||||
| Source Code |
this.usesandbox = usesandbox; this.reload = calcTimestamp(); |
||||||
| void triggerReload |
Trigger reload of IFrame |
||||||
| Source Code | this.reload = calcTimestamp(); | ||||||