{ "id": "164541", "key": "TIMOB-24252", "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": "17608", "name": "Release 6.1.0", "archived": false, "released": true, "releaseDate": "2017-05-26" } ], "resolution": { "id": "1", "description": "A fix for this issue is checked into the tree and tested.", "name": "Fixed" }, "resolutiondate": "2017-02-09T11:46:37.000+0000", "created": "2016-11-15T17:38:12.000+0000", "priority": { "name": "High", "id": "2" }, "labels": [], "versions": [ { "id": "16980", "description": "New V8", "name": "Release 6.0.0", "archived": false, "released": true, "releaseDate": "2016-11-15" } ], "issuelinks": [ { "id": "53924", "type": { "id": "10011", "name": "Includes", "inward": "is included by", "outward": "includes" }, "outwardIssue": { "id": "164477", "key": "TIMOB-24129", "fields": { "summary": "Windows: Click event fired when clicking a tableView with touchEnabled set to false", "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": "54007", "type": { "id": "10003", "name": "Relates", "inward": "relates to", "outward": "relates to" }, "outwardIssue": { "id": "164596", "key": "TIMOB-24238", "fields": { "summary": "Windows: borderRadius overflow doesn't work correctly ", "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": "High", "id": "2" }, "issuetype": { "id": "1", "description": "A problem which impairs or prevents the functions of the product.", "name": "Bug", "subtask": false } } } }, { "id": "54006", "type": { "id": "10003", "name": "Relates", "inward": "relates to", "outward": "relates to" }, "outwardIssue": { "id": "164595", "key": "TIMOB-24239", "fields": { "summary": "Windows: zIndex property/method applied but without any effect", "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": "1", "description": "A problem which impairs or prevents the functions of the product.", "name": "Bug", "subtask": false } } } }, { "id": "53958", "type": { "id": "10003", "name": "Relates", "inward": "relates to", "outward": "relates to" }, "inwardIssue": { "id": "165361", "key": "TIMOB-24328", "fields": { "summary": "UniversalWindowsApp: touchEnabled: false does not disable button", "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": "1", "description": "A problem which impairs or prevents the functions of the product.", "name": "Bug", "subtask": false } } } } ], "assignee": { "name": "kiguchi", "key": "kota", "displayName": "Kota Iguchi", "active": false, "timeZone": "America/Los_Angeles" }, "updated": "2017-02-14T19:38:35.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": "12642", "name": "Windows", "description": "Windows authoring support" } ], "description": "I've only tested in local app:\r\n\r\nappc run -p windows -T ws-local\r\n\r\ntest project attached\r\n\r\n*Classic code*\r\n\r\n{code}\r\nvar win = Ti.UI.createWindow({\r\n backgroundColor: 'green'\r\n});\r\n\r\nvar view1 = Ti.UI.createView({\r\n backgroundColor: 'blue',\r\n width: 100, height: 100,\r\n top: 100, left: 100,\r\n touchEnabled: false\r\n}),\r\nview2 = Ti.UI.createButton({\r\n backgroundColor: 'red',\r\n width: 100, height: 100,\r\n top: 110, left: 110,\r\n touchEnabled: false\r\n}),\r\nview3 = Ti.UI.createLabel({\r\n backgroundColor: 'yellow',\r\n width: 100, height: 100,\r\n top: 120, left: 120,\r\n touchEnabled: false\r\n}),\r\nview4 = Ti.UI.createImageView({\r\n backgroundColor: 'pink',\r\n width: 100, height: 100,\r\n top: 130, left: 130,\r\n touchEnabled: false\r\n}),\r\nview5 = Ti.UI.createTextArea({\r\n backgroundColor: 'blue',\r\n width: 100, height: 100,\r\n top: 140, left: 140,\r\n touchEnabled: false\r\n}),\r\nview6 = Ti.UI.createListView({\r\n backgroundColor: 'red',\r\n width: 100, height: 100,\r\n top: 150, left: 150,\r\n touchEnabled: false\r\n}),\r\nview7 = Ti.UI.createTextField({\r\n backgroundColor: 'yellow',\r\n width: 100, height: 100,\r\n top: 160, left: 160,\r\n touchEnabled: false\r\n}),\r\nview8 = Ti.UI.createPicker({\r\n backgroundColor: 'pink',\r\n width: 100, height: 100,\r\n top: 170, left: 170,\r\n touchEnabled: false\r\n}),\r\nview9 = Ti.UI.createView({\r\n backgroundColor: 'blue',\r\n width: 100, height: 100,\r\n top: 180, left: 180,\r\n touchEnabled: false\r\n}),\r\nview10 = Ti.UI.createScrollableView({\r\n backgroundColor: 'red',\r\n width: 100, height: 100,\r\n top: 190, left: 190,\r\n touchEnabled: false\r\n}),\r\nview11 = Ti.UI.createScrollView({\r\n backgroundColor: 'pink',\r\n width: 100, height: 100,\r\n top: 200, left: 200,\r\n touchEnabled: false\r\n}),\r\nview12 = Ti.UI.createSlider({\r\n backgroundColor: 'yellow',\r\n width: 100, height: 100,\r\n top: 210, left: 210,\r\n touchEnabled: false\r\n}),\r\nview13 = Ti.UI.createSwitch({\r\n backgroundColor: 'pink',\r\n width: 100, height: 100,\r\n top: 220, left: 220,\r\n touchEnabled: false\r\n});\r\n\r\nvar onClick = function (e) {\r\n alert('click from ' + e.source.apiName)\r\n};\r\n\r\nview1.addEventListener('click', onClick);\r\nview2.addEventListener('click', onClick);\r\nview3.addEventListener('click', onClick);\r\nview4.addEventListener('click', onClick);\r\nview5.addEventListener('click', onClick);\r\nview6.addEventListener('click', onClick);\r\nview7.addEventListener('click', onClick);\r\nview8.addEventListener('click', onClick);\r\nview9.addEventListener('click', onClick);\r\nview10.addEventListener('click', onClick);\r\nview11.addEventListener('click', onClick);\r\nview12.addEventListener('click', onClick);\r\nview13.addEventListener('click', onClick);\r\n\r\nvar btn = Ti.UI.createButton({\r\n title: 'Toggle touchEnabled -> ' + (!view1.touchEnabled),\r\n bottom: 0, left: 0,\r\n backgroundColor:'red'\r\n});\r\n\r\nbtn.addEventListener('click', function () {\r\n view1.touchEnabled = !view1.touchEnabled;\r\n view2.touchEnabled = !view2.touchEnabled;\r\n view3.touchEnabled = !view3.touchEnabled;\r\n view4.touchEnabled = !view4.touchEnabled;\r\n view5.touchEnabled = !view5.touchEnabled;\r\n view6.touchEnabled = !view6.touchEnabled;\r\n view7.touchEnabled = !view7.touchEnabled;\r\n view8.touchEnabled = !view8.touchEnabled;\r\n view9.touchEnabled = !view9.touchEnabled;\r\n view10.touchEnabled = !view10.touchEnabled;\r\n view11.touchEnabled = !view11.touchEnabled;\r\n view12.touchEnabled = !view12.touchEnabled;\r\n view13.touchEnabled = !view13.touchEnabled;\r\n btn.title = 'Toggle touchEnabled -> ' + (!view1.touchEnabled);\r\n});\r\n\r\nwin.add(view1);\r\nwin.add(view2);\r\nwin.add(view3);\r\nwin.add(view4);\r\nwin.add(view5);\r\nwin.add(view6);\r\nwin.add(view7);\r\nwin.add(view8);\r\nwin.add(view9);\r\nwin.add(view10);\r\nwin.add(view11);\r\nwin.add(view12);\r\nwin.add(view13);\r\nwin.add(btn);\r\n\r\nwin.open();\r\n{code}", "attachment": [ { "id": "61565", "filename": "Disabled.PNG", "author": { "name": "smohammed", "key": "smohammed", "displayName": "Samir Mohammed", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2017-02-14T19:31:26.000+0000", "size": 10756, "mimeType": "image/png" }, { "id": "61564", "filename": "Enabled.PNG", "author": { "name": "smohammed", "key": "smohammed", "displayName": "Samir Mohammed", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2017-02-14T19:31:26.000+0000", "size": 14647, "mimeType": "image/png" }, { "id": "60740", "filename": "Windows Tests.zip", "author": { "name": "ricardo_jcp", "key": "ricardo_jcp", "displayName": "Ricardo Pereira", "active": true, "timeZone": "Europe/Lisbon" }, "created": "2016-11-18T17:05:17.000+0000", "size": 471859, "mimeType": "application/zip" } ], "flagged": false, "summary": "Windows: touchEnabled property/method applied but without any effect", "creator": { "name": "ricardo_jcp", "key": "ricardo_jcp", "displayName": "Ricardo Pereira", "active": true, "timeZone": "Europe/Lisbon" }, "subtasks": [], "reporter": { "name": "ricardo_jcp", "key": "ricardo_jcp", "displayName": "Ricardo Pereira", "active": true, "timeZone": "Europe/Lisbon" }, "environment": "Windows 10 x64;\r\nAppcelerator Studio 4.8;\r\nTitanium SDK 6.0.0.GA;", "closedSprints": [ { "id": 808, "state": "closed", "name": "2017 Sprint 03 SDK", "startDate": "2017-01-28T21:12:30.215Z", "endDate": "2017-02-12T21:12:00.000Z", "completeDate": "2017-02-12T23:37:14.667Z", "originBoardId": 114 } ], "comment": { "comments": [ { "id": "401527", "author": { "name": "ricardo_jcp", "key": "ricardo_jcp", "displayName": "Ricardo Pereira", "active": true, "timeZone": "Europe/Lisbon" }, "body": "test project with 3 bugs:\r\n- touchEnabled\r\n- zIndex\r\n- borderRadius", "updateAuthor": { "name": "ricardo_jcp", "key": "ricardo_jcp", "displayName": "Ricardo Pereira", "active": true, "timeZone": "Europe/Lisbon" }, "created": "2016-11-18T17:05:53.000+0000", "updated": "2016-11-18T17:05:53.000+0000" }, { "id": "406639", "author": { "name": "kiguchi", "key": "kota", "displayName": "Kota Iguchi", "active": false, "timeZone": "America/Los_Angeles" }, "body": "https://github.com/appcelerator/titanium_mobile_windows/pull/946", "updateAuthor": { "name": "kiguchi", "key": "kota", "displayName": "Kota Iguchi", "active": false, "timeZone": "America/Los_Angeles" }, "created": "2017-02-09T00:42:21.000+0000", "updated": "2017-02-09T00:42:21.000+0000" }, { "id": "407045", "author": { "name": "smohammed", "key": "smohammed", "displayName": "Samir Mohammed", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Verified fixed, was able to enable and disable {{touchEnabled}} and see the various effects. If {{touchEnabled}} was disabled then I was not able to click anything and if {{touchEnabled}} was enabled I was able to click the various items.\r\n\r\nDisabled \r\n!Disabled.PNG|thumbnail!\r\nEnabled \r\n!Enabled.PNG|thumbnail!\r\n\r\n*Environment* \r\n{code:java}\r\nWindows Emulator: 10.0.14393\r\nPhone : Lumia 640 LTE (RM-1073)\r\nOperating System:\r\nName = Microsoft Windows 10 Pro\r\nVersion = 10.0.14393\r\nArchitecture = 32bit\r\n# CPUs = 4\r\nMemory = 17034395648\r\n \r\nNode.js:\r\nNode.js Version = 4.6.0 \r\nnpm Version = 2.15.9\r\n \r\nTitanium SDK:\r\nSDK Version = 6.1.0.v20170213134957\r\n{code}\r\n", "updateAuthor": { "name": "smohammed", "key": "smohammed", "displayName": "Samir Mohammed", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2017-02-14T19:37:23.000+0000", "updated": "2017-02-14T19:37:23.000+0000" }, { "id": "407046", "author": { "name": "smohammed", "key": "smohammed", "displayName": "Samir Mohammed", "active": true, "timeZone": "America/Los_Angeles" }, "body": "^^ Verified using the test case provided in https://github.com/appcelerator/titanium_mobile_windows/pull/946", "updateAuthor": { "name": "smohammed", "key": "smohammed", "displayName": "Samir Mohammed", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2017-02-14T19:38:35.000+0000", "updated": "2017-02-14T19:38:35.000+0000" } ], "maxResults": 7, "total": 7, "startAt": 0 } } }