{ "id": "173785", "key": "TIMOB-27171", "fields": { "issuetype": { "id": "4", "description": "An improvement or enhancement to an existing feature or task.", "name": "Improvement", "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": "20827", "name": "Release 8.2.0", "archived": false, "released": true, "releaseDate": "2019-09-19" } ], "resolution": { "id": "1", "description": "A fix for this issue is checked into the tree and tested.", "name": "Fixed" }, "resolutiondate": "2019-08-30T15:01:44.000+0000", "created": "2019-06-19T18:11:27.000+0000", "epic": { "id": 173691, "key": "TIMOB-27114", "name": "Support iOS 13", "summary": "iOS: Support iOS 13 and Xcode 11", "color": { "key": "color_3" }, "done": false }, "priority": { "name": "Medium", "id": "3" }, "labels": [], "versions": [], "issuelinks": [ { "id": "58976", "type": { "id": "10003", "name": "Relates", "inward": "relates to", "outward": "relates to" }, "outwardIssue": { "id": "175816", "key": "TIMOB-28248", "fields": { "summary": "Ti.UI.TableView Test Suite: Titanium.UI.TableView TIMOB-27171 iOS only", "status": { "description": "The issue is open and ready for the assignee to start work on it.", "name": "Open", "id": "1", "statusCategory": { "id": 2, "key": "new", "colorName": "blue-gray", "name": "To Do" } }, "priority": { "name": "None", "id": "6" }, "issuetype": { "id": "10100", "description": "This Issue Type is used to create Zephyr Test within Jira.", "name": "Test", "subtask": false } } } } ], "assignee": { "name": "vijaysingh", "key": "vijaysingh", "displayName": "Vijay Singh", "active": true, "timeZone": "America/Los_Angeles" }, "updated": "2020-11-20T04:16:58.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": "The new {{UITableViewStyleInsetGrouped}} should be supported in the list-view and table-view.", "attachment": [], "flagged": false, "summary": "iOS 13: Support new UITableViewStyleInsetGrouped style in list-view", "creator": { "name": "hknoechel", "key": "hansknoechel", "displayName": "Hans Knöchel", "active": true, "timeZone": "Europe/Berlin" }, "subtasks": [], "reporter": { "name": "hknoechel", "key": "hansknoechel", "displayName": "Hans Knöchel", "active": true, "timeZone": "Europe/Berlin" }, "environment": null, "closedSprints": [ { "id": 1160, "state": "closed", "name": "2019 Sprint 17", "startDate": "2019-08-12T07:59:28.950Z", "endDate": "2019-08-25T07:59:00.000Z", "completeDate": "2019-08-26T15:35:29.980Z", "originBoardId": 114 }, { "id": 1161, "state": "closed", "name": "2019 Sprint 18", "startDate": "2019-08-26T21:46:26.269Z", "endDate": "2019-09-08T21:46:00.000Z", "completeDate": "2019-09-09T20:39:58.761Z", "originBoardId": 114 } ], "comment": { "comments": [ { "id": "449334", "author": { "name": "vijaysingh", "key": "vijaysingh", "displayName": "Vijay Singh", "active": true, "timeZone": "America/Los_Angeles" }, "body": "PR - https://github.com/appcelerator/titanium_mobile/pull/10994\r\n\r\nTest Case (TableView)-\r\n\r\n{code:java}\r\nvar win = Ti.UI.createWindow();\r\nvar navWindow = Ti.UI.createNavigationWindow({\r\n window: win\r\n});\r\n\r\nvar sectionFruit = Ti.UI.createTableViewSection({ headerTitle: 'Fruit' });\r\nsectionFruit.add(Ti.UI.createTableViewRow({ title: 'Apples' }));\r\nsectionFruit.add(Ti.UI.createTableViewRow({ title: 'Bananas' }));\r\n\r\nvar sectionVeg = Ti.UI.createTableViewSection({ headerTitle: 'Vegetables' });\r\nsectionVeg.add(Ti.UI.createTableViewRow({ title: 'Carrots' }));\r\nsectionVeg.add(Ti.UI.createTableViewRow({ title: 'Potatoes' }));\r\n\r\nvar table = Ti.UI.createTableView({\r\n data: [sectionFruit, sectionVeg],\r\n style: Ti.UI.iOS.TableViewStyle.INSET_GROUPED\r\n});\r\n\r\nwin.add(table);\r\nnavWindow.open();\r\n{code}\r\n\r\nTest Case (List View) -\r\n\r\n{code:java}\r\nvar win = Ti.UI.createWindow({\r\n backgroundColor: '#fff'\r\n});\r\n \r\nvar list = Ti.UI.createListView({\r\n top: 50,\r\n style: Ti.UI.iOS.TableViewStyle.INSET_GROUPED,\r\n sections: [Ti.UI.createListSection({\r\n headerTitle: 'List 1',\r\n items: [{\r\n properties: {\r\n title: \"Item 1\",\r\n }\r\n },{\r\n properties: {\r\n title: \"Item 2\",\r\n }\r\n },{\r\n properties: {\r\n title: \"Item 3\",\r\n }\r\n }\r\n ]\r\n }),\r\n Ti.UI.createListSection({ \r\n headerTitle: 'List 2',\r\n items: [{\r\n properties: {\r\n title: \"Item 4\",\r\n }\r\n },{\r\n properties: {\r\n title: \"Item 5\",\r\n }\r\n },{\r\n properties: {\r\n title: \"Item 6\",\r\n }\r\n }\r\n ]\r\n })]\r\n})\r\n \r\nwin.add(list);\r\nwin.open();\r\n{code}\r\n\r\n ", "updateAuthor": { "name": "vijaysingh", "key": "vijaysingh", "displayName": "Vijay Singh", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2019-06-25T18:26:09.000+0000", "updated": "2019-06-25T18:26:09.000+0000" }, { "id": "450548", "author": { "name": "kmahalingam", "key": "kmahalingam", "displayName": "Keerthi Mahalingam", "active": false, "timeZone": "America/Los_Angeles" }, "body": "FR passed. waiting on Jenkins", "updateAuthor": { "name": "kmahalingam", "key": "kmahalingam", "displayName": "Keerthi Mahalingam", "active": false, "timeZone": "America/Los_Angeles" }, "created": "2019-08-17T04:34:37.000+0000", "updated": "2019-08-17T04:34:37.000+0000" }, { "id": "450778", "author": { "name": "smohammed", "key": "smohammed", "displayName": "Samir Mohammed", "active": true, "timeZone": "America/Los_Angeles" }, "body": "[~vijaysingh] Please could you add a PR for 8_3_X.", "updateAuthor": { "name": "smohammed", "key": "smohammed", "displayName": "Samir Mohammed", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2019-08-23T15:23:58.000+0000", "updated": "2019-08-23T15:23:58.000+0000" }, { "id": "450960", "author": { "name": "cwilliams", "key": "cwilliams", "displayName": "Christopher Williams", "active": true, "timeZone": "America/New_York" }, "body": "merged to master", "updateAuthor": { "name": "cwilliams", "key": "cwilliams", "displayName": "Christopher Williams", "active": true, "timeZone": "America/New_York" }, "created": "2019-08-29T19:04:06.000+0000", "updated": "2019-08-29T19:04:06.000+0000" }, { "id": "450994", "author": { "name": "smohammed", "key": "smohammed", "displayName": "Samir Mohammed", "active": true, "timeZone": "America/Los_Angeles" }, "body": "*Closing ticket*, improvement verified in SDK version {{8.2.0.v20190829124255}}.\r\n\r\nNote* Improvement will be merged into 8_3_X at a later date. \r\n\r\nTest and other information can be found at:\r\nPR - https://github.com/appcelerator/titanium_mobile/pull/10994\r\n", "updateAuthor": { "name": "smohammed", "key": "smohammed", "displayName": "Samir Mohammed", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2019-08-30T15:01:39.000+0000", "updated": "2019-08-30T15:01:39.000+0000" } ], "maxResults": 6, "total": 6, "startAt": 0 } } }