{ "id": "104752", "key": "TIMOB-11715", "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": "14162", "description": "Release 3.1.0", "name": "Release 3.1.0", "archived": true, "released": true, "releaseDate": "2013-04-16" }, { "id": "14624", "description": "2012 Sprint 24 JS", "name": "2012 Sprint 24", "archived": true, "released": true, "releaseDate": "2012-12-03" }, { "id": "14625", "description": "2012 Sprint 24 API", "name": "2012 Sprint 24 API", "archived": true, "released": true, "releaseDate": "2012-12-03" } ], "resolution": { "id": "1", "description": "A fix for this issue is checked into the tree and tested.", "name": "Fixed" }, "resolutiondate": "2012-11-20T23:08:31.000+0000", "created": "2012-11-09T12:29:51.000+0000", "priority": { "name": "High", "id": "2" }, "labels": [ "core", "module_animation", "qe-ios100112", "qe-testadded", "regression", "tableview" ], "versions": [ { "id": "13505", "description": "Release 3.0.0", "name": "Release 3.0.0", "archived": true, "released": true, "releaseDate": "2012-12-14" } ], "issuelinks": [ { "id": "22943", "type": { "id": "10003", "name": "Relates", "inward": "relates to", "outward": "relates to" }, "outwardIssue": { "id": "104923", "key": "TIMOB-11760", "fields": { "summary": "Make TableViewRow reuse conditional", "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": "High", "id": "2" }, "issuetype": { "id": "5", "description": "The sub-task of the issue", "name": "Sub-task", "subtask": true } } } } ], "assignee": { "name": "ingo", "key": "ingo", "displayName": "Ingo Muschenetz", "active": true, "timeZone": "America/Los_Angeles" }, "updated": "2013-07-24T08:52:10.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": "Animations are missing while adding and removing view.\r\nThis is regression since the issue does not occur in 2.1.4 and 2.1.3 GA.\r\n\r\nSteps to reproduce:\r\n1. Create an app using the code below.\r\n2. Launch the app and Click on yellow button.\r\n3. Click on green button.\r\n\r\nExpected result\r\n2. A blue view should appear with drop down animation with no delay.\r\n3. Blue view should disappear with bottom up animation. \r\n\r\nActual:\r\nThere is no drop down or bottom up animation while appearing and disappearing the view.\r\n\r\n{code}\r\nvar win1 = Titanium.UI.createWindow({ \r\n title:'Tab 1',\r\n backgroundColor:'#FFFFFF'\r\n});\r\n\t\t \r\n\t\tvar ds =[];\r\n\t\texpandableView = Ti.UI.createView({top:0,height:60,backgroundColor:'red'});\r\n\t\tnextview = Ti.UI.createView({layout:'vertical',top:-60,height:60,backgroundColor:'blue'});\r\n\t\tvar row1 = Titanium.UI.createTableViewRow({height:100});\r\n\t\trow1.add(expandableView);\r\n\t\t \r\n\t\tds.push(row1);\r\n\t\t \r\n\t\tvar row2 = Titanium.UI.createTableViewRow({height:100});\r\n\t\trow2.add(nextview);\r\n\t\t \r\n\t\tds.push(row2);\r\n\t\t \r\n\t\t \r\n\t\tvar btn1 = Ti.UI.createButton({\r\n\t\t title : 'Yes',\r\n\t\t width : '50%',\r\n\t\t height : 30,\r\n\t\t bottom : 0,\r\n\t\t left : 0,\r\n\t\t font : {\r\n\t\t fontSize : 13,\r\n\t\t fontWeight : 'bold',\r\n\t\t fontFamily : 'Helvetica Neue'\r\n\t\t },\r\n\t\t color : '#FFFFFF',\r\n\t\t backgroundImage:'none',\r\n\t\t backgroundColor:'yellow'\r\n\t\t });\r\n\t\t \r\n\t\t var btn2 = Ti.UI.createButton({\r\n\t\t title : 'No',\r\n\t\t width : '50%',\r\n\t\t height : 30,\r\n\t\t bottom : 2,\r\n\t\t right : 0,\r\n\t\t font : {\r\n\t\t fontSize : 13,\r\n\t\t fontWeight : 'bold',\r\n\t\t fontFamily : 'Helvetica Neue'\r\n\t\t },\r\n\t\t color : '#858686',\r\n\t\t backgroundImage:'none',\r\n\t\t backgroundColor:'green'\r\n\t\t });\r\n\t\tbtn1.addEventListener('click',function(){\r\n\t\t nextview.animate({top:0,duration:500})\r\n\t\t});\r\n\t\tbtn2.addEventListener('click',function(){\r\n\t\t nextview.animate({top:-60,duration:500})\r\n\t\t});\r\n\t\tvar tableView = Titanium.UI.createTableView({\r\n\t\t data : ds,\r\n\t\t scrollable : true,\r\n\t\t separatorColor : 'transparent',\r\n\t\t separatorStyle: 'none',\r\n\t\t top:0\r\n\t\t });\r\n\t\t \r\n\t\t \r\n\t\twin1.add(tableView);\r\n\t\twin1.add(btn1);\r\n\t\twin1.add(btn2);\r\n\t\twin1.open()\r\n\t\r\n{code}", "attachment": [], "flagged": false, "summary": "iOS: Animation - Animations are missing while adding and removing view.", "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.0.0.v20121108113945\r\nStudio: 3.0.0.201210301422\r\nDevice: iPhone4s(v 5.1), iPhone5(v 6.0), iPhone simulator\r\nOS: OSX10.8", "comment": { "comments": [ { "id": "228034", "author": { "name": "vduggal", "key": "vduggal", "displayName": "Vishal Duggal", "active": false, "timeZone": "America/Los_Angeles" }, "body": "Caused due to fix for TIMOB-11510. Will be fixed with fix for TIMOB-11760", "updateAuthor": { "name": "vduggal", "key": "vduggal", "displayName": "Vishal Duggal", "active": false, "timeZone": "America/Los_Angeles" }, "created": "2012-11-20T18:44:05.000+0000", "updated": "2012-11-20T18:44:05.000+0000" }, { "id": "228097", "author": { "name": "vduggal", "key": "vduggal", "displayName": "Vishal Duggal", "active": false, "timeZone": "America/Los_Angeles" }, "body": "Fixed by PR https://github.com/appcelerator/titanium_mobile/pull/3424 against TIMOB-11760", "updateAuthor": { "name": "vduggal", "key": "vduggal", "displayName": "Vishal Duggal", "active": false, "timeZone": "America/Los_Angeles" }, "created": "2012-11-20T23:08:31.000+0000", "updated": "2012-11-20T23:08:31.000+0000" }, { "id": "229730", "author": { "name": "nhuynh", "key": "nhuynh", "displayName": "Natalie Huynh", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Tested with 3.0.0.v20121130200208 with iPhone 4 5.1.1", "updateAuthor": { "name": "nhuynh", "key": "nhuynh", "displayName": "Natalie Huynh", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-12-04T00:17:14.000+0000", "updated": "2012-12-04T00:17:14.000+0000" }, { "id": "262957", "author": { "name": "prastogi", "key": "prastogi", "displayName": "Pragya Rastogi", "active": true, "timeZone": "Asia/Kolkata" }, "body": "Already covered in TIMOB-9827 test steps.", "updateAuthor": { "name": "prastogi", "key": "prastogi", "displayName": "Pragya Rastogi", "active": true, "timeZone": "Asia/Kolkata" }, "created": "2013-07-24T08:52:10.000+0000", "updated": "2013-07-24T08:52:10.000+0000" } ], "maxResults": 4, "total": 4, "startAt": 0 } } }