Warning Older Docs! - You are viewing documentation for a previous released version of RhoMobile Suite.

ReloadButton Module

The ReloadButton Module is used to set the parameters of the Reload Button. When clicked, the current page is reloaded.

Syntax

reloadButton (Module) <META> Syntax

<META HTTP-Equiv="ReloadButton" content="[parameter]">

ReloadButton JavaScript Object Syntax:
By default the JavaScript Object 'reloadButton' will exist on the current page and can be used to interact directly with the reloadButton.
To Set reloadButton parameters via JavaScript use the following syntax: reloadbutton.parameter = 'value'; remembering to enclose your value in quotes where appropriate.

e.g. reloadButton.left = 'value';
To set multiple EMML parameters / events on a single line use the following syntax: reloadbutton.setEMML("[Your EMML Tags]");

e.g. reloadButton.setEMML("left:value");
ReloadButton Ruby Object Syntax:
By default the Ruby Object 'ReloadButton' will exist on the current page and can be used to interact directly with the ReloadButton. All Methods, Parameters and Events are the same as JavaScript, however, notice 'ReloadButton' needs to start with an uppercase letter. Another difference in Ruby is that methods do not end in '()'
To Set ReloadButton parameters via Ruby use the following syntax: ReloadButton.parameter = 'value' remembering to enclose your value in quotes where appropriate.

e.g. ReloadButton.left = 'value'

Parameters

Items listed in this section indicate parameters, or attributes which can be set.

Name Possible Values Description Default Value
left:[Value] Positive number, representing pixels Sets the X position of the Reload button. Top right corner of the screen
top:[Value] Positive number, representing pixels Sets the Y position of the Reload button. Top right corner of the screen
height:[Value] Positive number, representing pixels Sets the height of the Reload button. Dependant on screen resolution
width:[Value] Positive number, representing pixels Sets the width of the Reload button. Dependant on screen resolution
imageUp:[Value] URL Sets the image to be displayed when the Reload Button is in the up state. See Remarks. Default image
imageDown:[Value] URL Sets the image to be displayed when the Reload Button is in the down state. See Remarks. Default image
visibility:[Value] Visible, Hidden Sets the visibility of the Reload button. Hidden.

Remarks

Use of Images on Buttons.

Images can be specified as local to the device or on an HTTP / FTP server, just specify the required protocol as part of your URL (file://\, HTTP:// and FTP://). Image will be scaled to the size of the button. JPEG and GIF images are only supported on WM devices. Both CE and WM support BMP files.

Reparsing Meta Tags

Note that RhoElements will not reparse a page’s meta tags when the page is reloaded. For example if a loaded page contains a ‘QuitButton’ ‘Visibility:Visible’ and that page is changed on disk to remove that meta tag; when the page is reloaded the quit button will remain shown. This is for efficiency, to dynamically change tags use InvokeMetaFunction in the Generic object.

Default Positions

By default this control will be placed a the top of the screen. On Windows Mobile if the ‘FullScreen’ configuration setting is disabled the control will need to be moved, otherwise it will appear beneath the task bar.

Switching to Other Applications

All controls are designed to be shown on top of RhoElements. If you require to switch to an application other than RhoElements you should minimize RhoElements to ensure the buttons do not remain shown. (Not applicable to Enterprise Tablet)

Screen Orientation

When the screen orientation changes, either using the ScreenOrientation tag or by rotating a device with hardware support, the command areas will automatically move and resize to fit the new layout. However the buttons themselves are not moved and in some cases this may result in them being off the screen or not in the expected position. If so they must be moved manually by detecting the ScreenOrientationEvent.

Use in Production

This API is designed for debugging your application only and should not be used in production

Requirements

RhoElements Version 1.0.0 or above
Supported Devices All supported touch devices.
Minimum Requirements None.
Persistence Persistent - Changes to this module will persist when navigating to a new page.

HTML/JavaScript Examples

The following example shows the reload button and sets the left and top coordinates to 50 pixels.

<META HTTP-Equiv="ReloadButton" Content="Visibility:Visible">
<META HTTP-Equiv="ReloadButton" Content="Left:50">
<META HTTP-Equiv="ReloadButton" Content="Top:50">

The following example shows the Reload button and displays the reload_up.gif / reload_down.gif images on it (resizing the images if necessary).

<META HTTP-Equiv="ReloadButton" Content="ImageUp:url('http://myaddress/reload_up.gif'); ImageDown:url('http://myaddress/reload_down.gif'); Visibility:Visible">
Back to Top