[TIMOB-5586] MobileWeb: Methods canGoBack and canGoForward return true if history of webView object is empty
| GitHub Issue | n/a |
|---|---|
| Type | Bug |
| Priority | Medium |
| Status | Closed |
| Resolution | Won't Fix |
| Resolution Date | 2011-06-10T06:07:12.000+0000 |
| Affected Version/s | n/a |
| Fix Version/s | n/a |
| Components | n/a |
| Labels | n/a |
| Reporter | Misha Vasko |
| Assignee | Maxim Negadaylov |
| Created | 2011-06-09T07:46:57.000+0000 |
| Updated | 2017-03-10T18:53:39.000+0000 |
Description
Methods canGoBack and canGoForward return true if history of webView object is empty.
var win = Ti.UI.currentWindow;
var tf = Ti.UI.createTextField({
left: 10,
top: 5,
width: 320,
height: 40
});
var webView = Ti.UI.createWebView({
top: 50,
left: 10,
width: 250,
height: 300,
// url: 'google.com/404',
backgroundColor: '#AAD',
loading: false,
touchEnabled: false,
});
var but = Ti.UI.createButton({
left: 400,
top: 10,
title: 'canGoBack',
width: 200,
height: 50
});
var but2 = Ti.UI.createButton({
left: 400,
top: 70,
title: 'goBack',
width: 200,
height: 50
});
win.add(but2);
win.add(but);
win.add(tf);
win.add(webView);
tf.addEventListener('return',function(){
webView.url = tf.value;
});
but.addEventListener('click',function(){
tf.value = webView.canGoBack();
});
but2.addEventListener('click', function(){
webView.goBack();
});
We can`t access iframe history object from other domains
Closing ticket as the issue will not fix.