The Webview
is the core container used for rendering your application code. You can control certain behaviors of the webview by using this API class.
This API is part of the coreapi
extension that is included automatically.
extensions: ["coreapi"]
Be sure to review the JavaScript API Usage guide for important information about using this API in JavaScript.
Be sure to review the Ruby API Usage guide for important information about using this API in Ruby.
Use Rho::NativeTabbar.currentTab property: returns the current tab index.
Synchronous Return:
Method Access:
Rho.WebView.active_tab()
Rho::WebView.active_tab()
Returns the relative url (location) of the current page(without server and port); the last URL loaded to WebView from Ruby controller action.
Parameters
TabBar tab index. If no tab bar present, index is ignored.Tab should be loaded once to return current url.
Current location of active WebView.
Synchronous Return:
Method Access:
Rho::WebView.currentLocation(INTEGER tabIndex)
Returns the actual URL in WebView. This works the same as the JavaScript window.location.href.
Parameters
TabBar tab index. If no tab bar present, index is ignored.
Current url of active WebView.
Synchronous Return:
Method Access:
Rho::WebView.currentURL(INTEGER tabIndex)
Execute JavaScript on the current page from your controller.
Parameters
The call to the JavaScript method on the current page, such as “test();”.
TabBar tab index. If no tab bar present, index is ignored.
Execute javascript in active WebView.
Synchronous Return:
Method Access:
Rho::WebView.executeJavascript(STRING javascriptText, INTEGER tabIndex)
Use WebView.fullScreen property: Switch to / from full screen mode.
Parameters
Synchronous Return:
Method Access:
Rho.WebView.full_screen_mode(BOOLEAN enable)
Rho::WebView.full_screen_mode(BOOLEAN enable)
Force WebView to refresh the current page.
Parameters
TabBar tab index. If no tab bar present, index is ignored.
Refresh active WebView.
Synchronous Return:
Method Access:
Rho.WebView.refresh(INTEGER tabIndex)
Rho::WebView.refresh(INTEGER tabIndex)
Save current page to file system.
Parameters
Format of the saved page.
Possible Values :
Save as jpeg image.
Path to the file / folder to save the page.
TabBar tab index. If no tab bar present, index is ignored.
If tabbar index omitted then active WebView will be saved.
Synchronous Return:
Method Access:
Rho.WebView.save(STRING format, STRING path, INTEGER tabIndex)
Rho::WebView.save(STRING format, STRING path, INTEGER tabIndex)
When WebView loads the specified url (either by selecting link or from calling WebView.navigate), it will add this cookie to the HTTP request.Not implemented for Zebra Technologies' WebKit.
Parameters
Set a cookie to be used by WebView for this url.
One or more name-value pairs of the format “NAME=VALUE”. Separate multiple name-value pairs with a semicolon, such as “NAME1=VALUE1; NAME2=VALUE2”.
Synchronous Return:
Method Access:
Rho::WebView.setCookie(STRING url, STRING cookie)
Return an active tab index. For change active tab use Use Rho.NativeTabbar.currentTab property.
Property Access:
Rho.WebView.activeTab
Rho::WebView.activeTab
The browser cache size, in whole MBs. Defines in config.xml: Navigation\Cache.
Property Access:
Rho.WebView.cacheSize
Rho::WebView.cacheSize
Enable / disable Browser cache. Use ‘WebView.enableCache’ parameter in rhoconfig.txt to configure this value.
Default: true
Property Access:
Rho.WebView.enableCache
Rho::WebView.enableCache
Show page loading indication. On Windows Mobile/CE this property can be set only in config.xml: GUI\HourglassEnabled. At Android use ‘disable_loading_indication’ parameter in rhoconfig.txt to configure this value.
Default: true
Property Access:
Rho.WebView.enablePageLoadingIndication
Rho::WebView.enablePageLoadingIndication
Enable / disable web plug-ins. Use ‘enable_web_plugins’ parameter in rhoconfig.txt to configure this value. This option only has effect on Android versions before 4.0 (ICS). It mainly affects if Flash content is displayed.
Default: true
Property Access:
Rho.WebView.enableWebPlugins
Rho::WebView.enableWebPlugins
Enable WebView zoom. Use ‘enable_screen_zoom’ parameter in rhoconfig.txt to configure this value.
Default: true
Property Access:
Rho.WebView.enableZoom
Rho::WebView.enableZoom
Specifies the default font to use when rendering text in web pages. The specified font should be a TrueType font present on the device. On Windows the default font has been set to ‘Tahoma’ as this is present on all Zebra WM / CE devices, note that Tahoma has no italic or oblique variants. On the Enterprise Tablet the default is Droid Sans Fallback. The font specified must be stored in \Windows for Windows WM / CE devices, or /system/fonts for Enterprise Tablet. Defines in config.xml: HTMLStyles\FontFamily
Property Access:
Rho.WebView.fontFamily
Rho::WebView.fontFamily
Same as System.webViewFramework.
Property Access:
Rho.WebView.framework
Rho::WebView.framework
Use full screen mode.
Default: false
Property Access:
Rho.WebView.fullScreen
Rho::WebView.fullScreen
Specifies the technique used to scroll about the page.Defines in config.xml: Scrolling\ScrollTechnique.
Default: FingerScroll
Possible Values (STRING):
No scrollbars will be displayed and the page will not respond to finger swipes.
When the size of the page is larger than the screen scrollbars will be presented which can be used to scroll the page.
You can scroll around the page using finger swiping.
Property Access:
Rho.WebView.scrollTechnique
Rho::WebView.scrollTechnique
Sets the font size to be displayed on the page, set to 0 for the smallest font and 4 for the largest font.
Property Access:
Rho.WebView.textZoomLevel
Rho::WebView.textZoomLevel
Defines in config.xml: Navigation\UserAgent. When visiting a web server the WebKit browser will report its self as the specified user agent. Use the following substitution variables:
%p - platform name ("Windows CE " + version number) %w - WebKit version number %e - MotorolaWebKit version number.
Property Access:
Rho.WebView.userAgent
Rho::WebView.userAgent
Whether to enable or disable viewport meta tag processing.Defines in config.xml: Navigation\ViewportEnabled.
Default: true
Property Access:
Rho.WebView.viewportEnabled
Rho::WebView.viewportEnabled
Default viewport width to use for pages that do not have a viewport meta tag (uses 1:1 scaling if not specified).Defines in config.xml: Navigation\ViewportWidth.
Property Access:
Rho.WebView.viewportWidth
Rho::WebView.viewportWidth
Sets the zoom factor of the page. Factor 1.0 is no zoom, values less than 1.0 are zoomed out and values greater than 1.0 are zoomed in.
Property Access:
Rho.WebView.zoomPage
Rho::WebView.zoomPage
You can call the WebView and make it execute JavaScript code from a Ruby controller. This can be particularly helpful in order to reuse JavaScript functionality that is already included in your pages.
#call javascript alert on the current page Rho::WebView.executeJavascript("alert('This is Webview.executejavascript function');")
As an example, you can invoke JQuery Mobile’s changePage.
#call JQuery Mobile from a Ruby controller Rho::WebView.executeJavascript("$.mobile.changePage('#my_page');")
You can also call your own functions.
function greet(name) { alert("Hello, "+name); }
From the Ruby controller we can execute the JavaScript function that may be in the view.
#call a custom JavaScript function from Ruby Rho::WebView.executeJavascript("greet('John Doe');")
The WebView can be set to use all the available screen real-estate by turning on “full-screen” mode.
# Toggle fullScreen on / off Rho::WebView.fullScreen = !Rho::WebView.fullScreen
This property can also be assigned to in JavaScript.
// Fullscreen can also be invoked from JavaScript Rho.WebView.fullScreen = true; Rho.WebView.fullScreen = false;
This is the section that will appear before the code block.
#Force WebView to navigate to a URL. Rho::WebView.navigate(url_for(:action => :my_action))
You can also navigate outside of your application, to an external site.
#Navigate out of the local application and into an externally-served site Rho::WebView.navigate("http://www.example.com");
This API is also available from JavaScript.
//Navigate out of the local application and into an externally-served site Rho.WebView.navigate("http://www.example.com");
This is the section that will appear before the code block.
#Force WebView to navigate to the previous page using Browser back. Rho::WebView.navigateBack
The same method is available in JavaScript.
//Force WebView to navigate to the previous page using Browser back.
Rho.WebView.navigateBack();
Reload the current URL into the WebView. This is useful especially after having updated data that must be now shown to the user
# Update database or variables here # ... # Refresh the current page to show new information Rho::WebView.refresh
By default, “refresh” will update the current view. If you are using the native Tabbar and have multiple WebViews, you can specify which one to refresh.
# Reload the page on WebView number 2 Rho::WebView.refresh(2)
Also available from JavaScript.
// Reload the current page Rho.WebView.refresh() // Reload the page on WebView number 3 Rho.WebView.refresh(3)