{ "id": "99715", "key": "TIMOB-10811", "fields": { "issuetype": { "id": "1", "description": "A problem which impairs or prevents the functions of the product.", "name": "Bug", "subtask": false }, "project": { "id": "10153", "key": "TIMOB", "name": "Titanium SDK/CLI", "projectCategory": { "id": "10100", "description": "Titanium and related SDKs used in application development", "name": "Client" } }, "fixVersions": [ { "id": "13505", "description": "Release 3.0.0", "name": "Release 3.0.0", "archived": true, "released": true, "releaseDate": "2012-12-14" }, { "id": "14098", "description": "Sprint 2012-18 API", "name": "Sprint 2012-18 API", "archived": true, "released": true, "releaseDate": "2012-09-10" } ], "resolution": { "id": "1", "description": "A fix for this issue is checked into the tree and tested.", "name": "Fixed" }, "resolutiondate": "2012-09-04T13:13:24.000+0000", "created": "2012-08-24T05:23:54.000+0000", "priority": { "name": "Medium", "id": "3" }, "labels": [ "api", "module_webview", "qe-review", "qe-testadded" ], "versions": [ { "id": "13505", "description": "Release 3.0.0", "name": "Release 3.0.0", "archived": true, "released": true, "releaseDate": "2012-12-14" } ], "issuelinks": [ { "id": "43702", "type": { "id": "10003", "name": "Relates", "inward": "relates to", "outward": "relates to" }, "inwardIssue": { "id": "98557", "key": "TIMOB-11040", "fields": { "summary": "default activity Indicator for webview shows on left ", "status": { "description": "The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.", "name": "Closed", "id": "6", "statusCategory": { "id": 3, "key": "done", "colorName": "green", "name": "Done" } }, "priority": { "name": "Low", "id": "4" }, "issuetype": { "id": "1", "description": "A problem which impairs or prevents the functions of the product.", "name": "Bug", "subtask": false } } } } ], "assignee": { "name": "srahim", "key": "srahim", "displayName": "Sabil Rahim", "active": true, "timeZone": "America/Los_Angeles" }, "updated": "2014-12-04T19:25:06.000+0000", "status": { "description": "The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.", "name": "Closed", "id": "6", "statusCategory": { "id": 3, "key": "done", "colorName": "green", "name": "Done" } }, "components": [ { "id": "10206", "name": "iOS", "description": "iOS Platform" } ], "description": "It would be nice to have an option to disable default spinner when calling remote urls in WebView component. There may be \"disableSpinner\" or \"hideSpinner\" option/property for Titanium.UI.WebView.", "attachment": [], "flagged": false, "summary": "iOS: Option for disabling default spinner for WebView when opening remote URLs.", "creator": { "name": "hdogan", "key": "hdogan", "displayName": "Hidayet Dogan", "active": true, "timeZone": "Europe/Istanbul" }, "subtasks": [], "reporter": { "name": "hdogan", "key": "hdogan", "displayName": "Hidayet Dogan", "active": true, "timeZone": "Europe/Istanbul" }, "environment": "iOS", "comment": { "comments": [ { "id": "215991", "author": { "name": "hdogan", "key": "hdogan", "displayName": "Hidayet Dogan", "active": true, "timeZone": "Europe/Istanbul" }, "body": "Submitted pull request for this ticket, can be found at: https://github.com/appcelerator/titanium_mobile/pull/2825\r\n\r\nHere are the functional test code:\r\n\r\n{code}Titanium.UI.setBackgroundColor('#fff');\r\n\r\nvar win = Titanium.UI.createWindow({ \r\n title: 'WebView Test',\r\n backgroundColor: '#fff'\r\n});\r\n\r\nvar button1 = Titanium.UI.createButton({\r\n\ttop: 330,\r\n\ttitle: 'Open Remote URL With Spinner',\r\n\tstyle: Titanium.UI.iPhone.SystemButtonStyle.BORDERED\r\n});\r\n\r\nbutton1.addEventListener('click', function(e) {\r\n\tvar webview = Titanium.UI.createWebView({\r\n\t\ttop: 0,\r\n\t\twidth: 320,\r\n\t\theight: 320,\r\n\t\turl: 'http://www.nobius.org/~dbg/practical-file-system-design.pdf', // need slow loading remote url to catch spinner\r\n\t\t// hideDefaultSpinner: false (default is already false)\r\n\t});\r\n\t\r\n\twin.add(webview);\r\n});\r\n\r\nwin.add(button1);\r\n\r\nvar button2 = Titanium.UI.createButton({\r\n\ttop: 380,\r\n\ttitle: 'Open Remote URL Without Spinner',\r\n\tstyle: Titanium.UI.iPhone.SystemButtonStyle.BORDERED\r\n});\r\n\r\nbutton2.addEventListener('click', function(e) {\r\n\tvar webview = Titanium.UI.createWebView({\r\n\t\ttop: 0,\r\n\t\twidth: 320,\r\n\t\theight: 320,\r\n\t\turl: 'http://www.newamericancentury.org/RebuildingAmericasDefenses.pdf', // another slow loading remote url\r\n\t\thideLoadIndicator: true\r\n\t});\r\n\t\r\n\twin.add(webview);\r\n});\r\n\r\nwin.add(button2);\r\n\r\nwin.open();{code}", "updateAuthor": { "name": "srahim", "key": "srahim", "displayName": "Sabil Rahim", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-08-24T06:17:25.000+0000", "updated": "2012-09-04T13:12:24.000+0000" }, { "id": "217485", "author": { "name": "srahim", "key": "srahim", "displayName": "Sabil Rahim", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Pr merged: https://github.com/appcelerator/titanium_mobile/pull/2825", "updateAuthor": { "name": "ngupta", "key": "ngupta", "displayName": "Neeraj Gupta", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-09-04T13:13:24.000+0000", "updated": "2012-09-06T22:29:24.000+0000" }, { "id": "218145", "author": { "name": "amittal", "key": "amittal", "displayName": "Anshu Mittal", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Verified with:\r\nSDK: 2.2.0.v20120907162025\r\nSTUDIO: 2.1.3.201209071738\r\nDevices: iOS simulator, iPhone4s(v 5.0.1)", "updateAuthor": { "name": "amittal", "key": "amittal", "displayName": "Anshu Mittal", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-09-10T05:13:12.000+0000", "updated": "2012-09-10T05:13:12.000+0000" } ], "maxResults": 3, "total": 3, "startAt": 0 } } }