Titanium JIRA Archive
Appcelerator Community (AC)

[AC-2861] Webview documents incorrectly states .html property is read-only on everything other than iOS

GitHub Issuen/a
TypeBug
Priorityn/a
StatusClosed
ResolutionFixed
Resolution Date2013-04-01T20:59:28.000+0000
Affected Version/sn/a
Fix Version/sn/a
Componentsn/a
Labelsn/a
ReporterNeville Dastur
AssigneeDaniel Sefton
Created2012-07-01T11:32:19.000+0000
Updated2016-03-08T07:47:48.000+0000

Description

var webview = Ti.UI.createWebView({});
webview.html = '<html><body>Some HTML</body></html>';
does work on Android

Comments

  1. Pedro Enrique 2013-04-01

    Cannot reproduce
       var win = Ti.UI.createWindow({
           backgroundColor: 'white'
       });
       var webview = Ti.UI.createWebView({});
       webview.html = '<html><body>Some HTML</body></html>';
       win.add(webview);
       win.open();
       

JSON Source