{ "id": "129209", "key": "TIMOB-16865", "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": "16997", "name": "Release 5.2.0", "archived": false, "released": true, "releaseDate": "2016-02-23" } ], "resolution": { "id": "1", "description": "A fix for this issue is checked into the tree and tested.", "name": "Fixed" }, "resolutiondate": "2015-12-10T03:18:39.000+0000", "created": "2014-04-18T15:34:12.000+0000", "priority": { "name": "Low", "id": "4" }, "labels": [], "versions": [], "issuelinks": [ { "id": "48263", "type": { "id": "10011", "name": "Includes", "inward": "is included by", "outward": "includes" }, "inwardIssue": { "id": "149377", "key": "TIMOB-19140", "fields": { "summary": "Ti.UI.ListView.dividerHeight does not accept value of 0", "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 } } } }, { "id": "48264", "type": { "id": "10011", "name": "Includes", "inward": "is included by", "outward": "includes" }, "inwardIssue": { "id": "149378", "key": "TIMOB-19141", "fields": { "summary": "Parity: Support Ti.UI.ListView.seperatorStyle on Android", "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": "2", "description": "A new feature of the product, which has yet to be developed.", "name": "New Feature", "subtask": false } } } } ], "assignee": { "name": "hpham", "key": "hpham", "displayName": "Hieu Pham", "active": true, "timeZone": "America/Los_Angeles" }, "updated": "2016-02-18T08:13:12.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": "10202", "name": "Android", "description": "Android Platform" } ], "description": "I have a tableview where I would like to remove the tableview row separators completely. However, setting the separatorColor to transparent on Android (or on MobileWeb setting the separatorStyle to NONE) only hides the separator - it does not remove it.\r\n\r\niOS by contrast actually removes the separator all together and allows the tableViewRow to take up the full expected real estate.\r\n\r\nSee screenshot for comparisons.", "attachment": [ { "id": "47369", "filename": "Screen Shot 2014-04-18 at 12.26.11 AM.png", "author": { "name": "bgrantges@appcelerator.com", "key": "bgrantges", "displayName": "Bert Grantges", "active": false, "timeZone": "America/Chicago" }, "created": "2014-04-18T15:34:12.000+0000", "size": 260342, "mimeType": "image/png" }, { "id": "47368", "filename": "Screen Shot 2014-04-18 at 9.48.35 AM.png", "author": { "name": "bgrantges@appcelerator.com", "key": "bgrantges", "displayName": "Bert Grantges", "active": false, "timeZone": "America/Chicago" }, "created": "2014-04-18T15:34:12.000+0000", "size": 115040, "mimeType": "image/png" } ], "flagged": false, "summary": "Android / MobileWeb: Unable to remove the TableView row separators even if the color is set to transparent", "creator": { "name": "bgrantges@appcelerator.com", "key": "bgrantges", "displayName": "Bert Grantges", "active": false, "timeZone": "America/Chicago" }, "subtasks": [], "reporter": { "name": "bgrantges@appcelerator.com", "key": "bgrantges", "displayName": "Bert Grantges", "active": false, "timeZone": "America/Chicago" }, "environment": "ALL Android versions", "closedSprints": [ { "id": 536, "state": "closed", "name": "2015 Sprint 25 SDK", "startDate": "2015-12-05T01:30:40.415Z", "endDate": "2015-12-19T01:30:00.000Z", "completeDate": "2015-12-29T03:19:42.127Z", "originBoardId": 114 } ], "comment": { "comments": [ { "id": "301421", "author": { "name": "bgrantges@appcelerator.com", "key": "bgrantges", "displayName": "Bert Grantges", "active": false, "timeZone": "America/Chicago" }, "body": "This is possible - and there is a native module out there to remove the separator (http://exygy.com/titanium-remove-tablewview-separators-android/) - however this should be included in our platform.", "updateAuthor": { "name": "bgrantges@appcelerator.com", "key": "bgrantges", "displayName": "Bert Grantges", "active": false, "timeZone": "America/Chicago" }, "created": "2014-04-18T15:35:26.000+0000", "updated": "2014-04-18T15:35:26.000+0000" }, { "id": "371687", "author": { "name": "falko", "key": "falko", "displayName": "Andrey Tkachenko", "active": true, "timeZone": "Europe/Moscow" }, "body": "PR: https://github.com/appcelerator/titanium_mobile/pull/7514\r\nI can't reproduce this issue with MobileWeb.\r\n\r\n\r\n{code:javascript}\r\nvar win = Ti.UI.createWindow();\r\n\r\nvar sectionFruit = Ti.UI.createTableViewSection({ headerTitle: 'Fruit' });\r\nsectionFruit.add(Ti.UI.createTableViewRow({ title: 'Apples', color: \"#ffffff\" }));\r\nsectionFruit.add(Ti.UI.createTableViewRow({ title: 'Bananas', color: \"#ffffff\" }));\r\n\r\nvar sectionVeg = Ti.UI.createTableViewSection({ headerTitle: 'Vegetables' });\r\nsectionVeg.add(Ti.UI.createTableViewRow({ title: 'Carrots', color: \"#ffffff\" }));\r\nsectionVeg.add(Ti.UI.createTableViewRow({ title: 'Potatoes', color: \"#ffffff\" }));\r\n\r\nvar table = Ti.UI.createTableView({\r\n data: [sectionFruit, sectionVeg],\r\n backgroundColor: \"#000000\" \r\n});\r\n\r\nif(Ti.Platform.osname == 'android') {\r\n\ttable.separatorStyle = Ti.UI.TableViewSeparatorStyle.NONE;\r\n} else if(Ti.Platform.osname == 'iphone') {\r\n\ttable.separatorStyle = Ti.UI.iPhone.TableViewSeparatorStyle.NONE;\r\n} else if(Ti.Platform.osname == 'mobileweb') {\r\n\ttable.separatorStyle = Ti.UI.MobileWeb.TableViewSeparatorStyle.NONE;\r\n} \r\n\r\nwin.add(table);\r\nwin.open();\r\n{code}\r\n", "updateAuthor": { "name": "falko", "key": "falko", "displayName": "Andrey Tkachenko", "active": true, "timeZone": "Europe/Moscow" }, "created": "2015-11-30T22:29:01.000+0000", "updated": "2015-11-30T22:29:01.000+0000" }, { "id": "372565", "author": { "name": "hpham", "key": "hpham", "displayName": "Hieu Pham", "active": true, "timeZone": "America/Los_Angeles" }, "body": "master PR: https://github.com/appcelerator/titanium_mobile/pull/7564\r\ntesting code:\r\n{code}\r\nvar win = Ti.UI.createWindow();\r\n \r\nvar sectionFruit = Ti.UI.createTableViewSection({ headerTitle: 'Fruit' });\r\nsectionFruit.add(Ti.UI.createTableViewRow({ title: 'Apples', color: \"#ffffff\" }));\r\nsectionFruit.add(Ti.UI.createTableViewRow({ title: 'Bananas', color: \"#ffffff\" }));\r\n \r\nvar sectionVeg = Ti.UI.createTableViewSection({ headerTitle: 'Vegetables' });\r\nsectionVeg.add(Ti.UI.createTableViewRow({ title: 'Carrots', color: \"#ffffff\" }));\r\nsectionVeg.add(Ti.UI.createTableViewRow({ title: 'Potatoes', color: \"#ffffff\" }));\r\n \r\nvar table = Ti.UI.createTableView({\r\n data: [sectionFruit, sectionVeg],\r\n backgroundColor: \"#000000\",\r\n separatorColor: \"blue\",\r\n separatorStyle: Ti.UI.TABLE_VIEW_SEPARATOR_STYLE_NONE\r\n});\r\n \r\n \r\nwin.add(table);\r\nwin.open();\r\n{code}", "updateAuthor": { "name": "hpham", "key": "hpham", "displayName": "Hieu Pham", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2015-12-10T00:22:10.000+0000", "updated": "2015-12-10T00:22:10.000+0000" }, { "id": "372577", "author": { "name": "msamah", "key": "msamah", "displayName": "Ashraf Abu", "active": false, "timeZone": "Asia/Singapore" }, "body": "Master PR merged.\r\n\r\nDoc update PR: https://github.com/appcelerator/titanium_mobile/pull/7565", "updateAuthor": { "name": "msamah", "key": "msamah", "displayName": "Ashraf Abu", "active": false, "timeZone": "Asia/Singapore" }, "created": "2015-12-10T03:18:04.000+0000", "updated": "2015-12-10T03:18:04.000+0000" }, { "id": "372580", "author": { "name": "msamah", "key": "msamah", "displayName": "Ashraf Abu", "active": false, "timeZone": "Asia/Singapore" }, "body": "Doc PR merged.", "updateAuthor": { "name": "msamah", "key": "msamah", "displayName": "Ashraf Abu", "active": false, "timeZone": "Asia/Singapore" }, "created": "2015-12-10T03:35:27.000+0000", "updated": "2015-12-10T03:35:27.000+0000" }, { "id": "374641", "author": { "name": "lchoudhary", "key": "lchoudhary", "displayName": "Lokesh Choudhary", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Verified the implementation.\r\nTi.UI.TABLE_VIEW_SEPARATOR_STYLE_NONE & Ti.UI.TABLE_VIEW_SEPARATOR_SINGLE_LINE works as expected.\r\n\r\nClosing.\r\n\r\nEnvironment:\r\nAppc Studio : 4.5.0.201601131150\r\nTi SDK : 5.2.0.v20160114021251\r\nTi CLI : 5.0.5\r\nAlloy : 1.7.26\r\nMAC Yosemite : 10.10.5\r\nAppc NPM : 4.2.2\r\nAppc CLI : 5.1.0\r\nNode: v0.12.27\r\nNexus 6P - Android 6.0\r\nGalaxy S4 - Android 4.4.4", "updateAuthor": { "name": "lchoudhary", "key": "lchoudhary", "displayName": "Lokesh Choudhary", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2016-01-15T02:10:15.000+0000", "updated": "2016-01-15T02:10:15.000+0000" }, { "id": "377193", "author": { "name": "falko", "key": "falko", "displayName": "Andrey Tkachenko", "active": true, "timeZone": "Europe/Moscow" }, "body": "Why we can't make same flags for all platform same way?", "updateAuthor": { "name": "falko", "key": "falko", "displayName": "Andrey Tkachenko", "active": true, "timeZone": "Europe/Moscow" }, "created": "2016-02-18T08:13:12.000+0000", "updated": "2016-02-18T08:13:12.000+0000" } ], "maxResults": 7, "total": 7, "startAt": 0 } } }