{ "id": "119243", "key": "TIMOB-14999", "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": "15646", "description": "2013 Sprint 18", "name": "2013 Sprint 18", "archived": true, "released": true, "releaseDate": "2013-09-06" }, { "id": "15690", "description": "2013 Sprint 18 API", "name": "2013 Sprint 18 API", "archived": true, "released": true, "releaseDate": "2013-09-06" }, { "id": "15593", "description": "Release 3.1.3", "name": "Release 3.1.3", "archived": true, "released": true, "releaseDate": "2013-09-18" }, { "id": "14982", "description": "Release 3.2.0", "name": "Release 3.2.0", "archived": false, "released": true, "releaseDate": "2013-12-19" } ], "resolution": { "id": "1", "description": "A fix for this issue is checked into the tree and tested.", "name": "Fixed" }, "resolutiondate": "2013-08-29T23:32:38.000+0000", "created": "2013-08-29T11:01:58.000+0000", "priority": { "name": "High", "id": "2" }, "labels": [ "ios7", "module_tableview", "qe-3.1.3", "qe-closed-3.1.3", "qe-testadded", "regression" ], "versions": [ { "id": "15593", "description": "Release 3.1.3", "name": "Release 3.1.3", "archived": true, "released": true, "releaseDate": "2013-09-18" } ], "issuelinks": [ { "id": "31501", "type": { "id": "10002", "name": "Duplicate", "inward": "is duplicated by", "outward": "duplicates" }, "inwardIssue": { "id": "119000", "key": "TIMOB-14951", "fields": { "summary": "iOS7: Window title flashes on SubWindow Close", "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": "Medium", "id": "3" }, "issuetype": { "id": "1", "description": "A problem which impairs or prevents the functions of the product.", "name": "Bug", "subtask": false } } } } ], "assignee": { "name": "vduggal", "key": "vduggal", "displayName": "Vishal Duggal", "active": false, "timeZone": "America/Los_Angeles" }, "updated": "2015-02-02T20:47:45.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": "Screen flickers two times before it loads completely.\r\nThis is a regression since the issue does not occur on 3.1.2 GA\r\n\r\nSteps to reproduce:\r\n1. Go to Kitchensink> BaseUI> Views>Table views>Table search\r\n\r\nActual:\r\nScreen flickers before it loads.\r\n\r\nExpected: Screen should not flicker.", "attachment": [], "flagged": false, "summary": "iOS7: Table search - Screen flickers two times before it loads completely", "creator": { "name": "amittal", "key": "amittal", "displayName": "Anshu Mittal", "active": true, "timeZone": "America/Los_Angeles" }, "subtasks": [], "reporter": { "name": "amittal", "key": "amittal", "displayName": "Anshu Mittal", "active": true, "timeZone": "America/Los_Angeles" }, "environment": "SDK: 3.1.3.v20130828171413\r\nAppcelertaor Studio: 3.1.3.201308252005\r\nOS: OSX 10.8.4\r\nDevice: iPhone4s(iOS7)\r\nXcode: 5.0 DP6\r\ntitanium-code-processor@1.0.2\r\nalloy@1.2.1-cr2", "comment": { "comments": [ { "id": "268859", "author": { "name": "ingo", "key": "ingo", "displayName": "Ingo Muschenetz", "active": true, "timeZone": "America/Los_Angeles" }, "body": "[~srahim], thoughts?", "updateAuthor": { "name": "ingo", "key": "ingo", "displayName": "Ingo Muschenetz", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2013-08-29T16:01:29.000+0000", "updated": "2013-08-29T16:01:29.000+0000" }, { "id": "268895", "author": { "name": "vduggal", "key": "vduggal", "displayName": "Vishal Duggal", "active": false, "timeZone": "America/Los_Angeles" }, "body": "Test case\n{code}\nfunction genWin(fs){\n var win = Ti.UI.createWindow({\n fullscreen:fs,\n backgroundColor:'white',\n layout:'vertical'\n })\n\n\n var label = Ti.UI.createLabel({\n top:10,\n text:'FULLSCREEN IS '+fs+'.'\n })\n\n var b1 = Ti.UI.createButton({\n top:10,\n title:'TRUE'\n })\n\n var b2 = Ti.UI.createButton({\n top:10,\n title:'FALSE'\n })\n\n b1.addEventListener('click',function(){\n openWin(true);\n })\n\n b2.addEventListener('click',function(){\n openWin(false);\n })\n win.add(label);\n win.add(b1);\n win.add(b2);\n\n return win;\n}\n\nfunction openWin(fs){\n var win = genWin(fs);\n navWin.push(win);\n}\n\n\nvar rootWin = genWin(false);\n\nvar navWin = Ti.UI.iOS.createNavigationWindow({\n window:rootWin\n})\n\n\nnavWin.open();\n{code}", "updateAuthor": { "name": "vduggal", "key": "vduggal", "displayName": "Vishal Duggal", "active": false, "timeZone": "America/Los_Angeles" }, "created": "2013-08-29T17:49:49.000+0000", "updated": "2013-08-29T17:49:49.000+0000" }, { "id": "268897", "author": { "name": "vduggal", "key": "vduggal", "displayName": "Vishal Duggal", "active": false, "timeZone": "America/Los_Angeles" }, "body": "PR master - https://github.com/appcelerator/titanium_mobile/pull/4625", "updateAuthor": { "name": "vduggal", "key": "vduggal", "displayName": "Vishal Duggal", "active": false, "timeZone": "America/Los_Angeles" }, "created": "2013-08-29T17:52:51.000+0000", "updated": "2013-08-29T17:52:51.000+0000" }, { "id": "268952", "author": { "name": "vduggal", "key": "vduggal", "displayName": "Vishal Duggal", "active": false, "timeZone": "America/Los_Angeles" }, "body": "Backport to 3_1_X - https://github.com/appcelerator/titanium_mobile/pull/4626", "updateAuthor": { "name": "vduggal", "key": "vduggal", "displayName": "Vishal Duggal", "active": false, "timeZone": "America/Los_Angeles" }, "created": "2013-08-29T21:36:21.000+0000", "updated": "2013-08-29T21:36:21.000+0000" }, { "id": "269057", "author": { "name": "oromero", "key": "oromero", "displayName": "Olga Romero", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Tested with:\nAppcelerator Studio, build: 3.1.3.201308292449\nTitanium SDK, build: 3.1.3.v20130829174830\nKS-build:3.1.3840192a(08/29/13 17:48)\nDevices:\niPad4 iOS7 (11A4449d)\niPhone5 iOS7 (11A4449d)\n\nCan see no flickering.\n\nAlso, tested the above code and it works as expected, no flickering.\n\n", "updateAuthor": { "name": "oromero", "key": "oromero", "displayName": "Olga Romero", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2013-08-30T17:11:12.000+0000", "updated": "2013-08-30T17:11:12.000+0000" } ], "maxResults": 5, "total": 5, "startAt": 0 } } }