Skip to main content

The WebView component for Retool Mobile

A content area to embed a web page.

Properties

All properties for this object with supported data types or values. You can write JavaScript almost anywhere in Retool to manipulate or read property values.

buttonSize

The size of the button.

Type string
Mutability
ControlUsage
Retool UI Inspector
Allowed Values
ValueDescription
small

Small button.

large

Large button.


buttonText

The text label to display.

Type string
Format Plain Text
Mutability
ControlUsage
Retool UI Inspector > Content > Add-ons > Label
Default
null
Examples
"Label"

disabled

Whether input, interaction, selection, or triggering is disabled.

Type boolean
Format True/False
Mutability
ControlUsage
Retool UI Inspector > Interaction
MethodsetDisabled()
Default
false
Examples
true

hidden

Whether this object is hidden from view.

Type boolean
Format True/False
Mutability
ControlUsage
Retool UI Inspector > Appearance
MethodsetHidden()
Default
false
Examples
true

iconAfter

The suffix icon to display.

Type string
Format Icon Key
Mutability
ControlUsage
Retool UI Inspector > Content > Add-ons
Default
null
Examples
/icon:bold/shopping-gift

iconBefore

The prefix icon to display.

Type string
Format Icon Key
Mutability
ControlUsage
Retool UI Inspector > Content > Add-ons
Default
null
Examples
/icon:bold/shopping-gift

url

The URL.

Type string
Mutability Read-only

width

The width.

Type number
Format Integer
Mutability
ControlUsage
Retool UI Inspector
Examples
1280

Methods

JavaScript API methods for this object. You can write JavaScript almost anywhere in Retool and use methods to manipulate data and property values.

webView.setDisabled()

Set the disabled value to toggle whether the input field is disabled. Defaults to true without a parameter.

Definition
webView.setDisabled(disabled)
Parameters

disabled

boolean

Whether input, interaction, selection, or triggering is disabled.

Examples

Disable webView.

webView.setDisabled(true);

Enable webView.

webView.setDisabled(false);

webView.setHidden()

Set the hidden value to toggle whether the component is visible. Defaults to true without a parameter.

Definition
webView.setHidden(hidden)
Parameters

hidden

boolean

Whether this object is hidden from view.

Examples

Hide webView.

webView.setHidden(true);

Unhide webView.

webView.setHidden(false);

Events

Events triggered by user interactions. Use event handlers to trigger queries or other actions in response to events.