{ "id": "115717", "key": "AC-3220", "fields": { "issuetype": { "id": "2", "description": "A new feature of the product, which has yet to be developed.", "name": "New Feature", "subtask": false }, "project": { "id": "12217", "key": "AC", "name": "Appcelerator - INBOX", "projectCategory": { "id": "10000", "description": "", "name": "Customer Service" } }, "resolution": { "id": "5", "description": "All attempts at reproducing this issue failed, or not enough information was available to reproduce the issue. Reading the code produces no clues as to why this behavior would occur. If more information appears later, please reopen the issue.", "name": "Cannot Reproduce" }, "resolutiondate": "2013-12-30T05:25:59.000+0000", "created": "2013-06-08T18:18:42.000+0000", "labels": [], "versions": [], "issuelinks": [], "assignee": { "name": "shossain", "key": "shossain", "displayName": "Shak Hossain", "active": false, "timeZone": "America/Los_Angeles" }, "updated": "2016-03-08T07:57:37.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": [], "description": "h3. Steps to Reproduce\r\nbuild a module with various information items needed such as last name, first name, dob. The date picker will initiate once selected but when date is selected it does not place the result in the field location. I do see the correct info being picked up via the console.\r\n\r\nh3. Actual Result\r\nno date shown after selection.\r\n\r\nh3. Expected Result\r\nsee the date of birth", "attachment": [ { "id": "39621", "filename": ".log", "author": { "name": "4rensycs", "key": "4rensycs", "displayName": "Ron Arnold", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2013-06-08T18:18:50.000+0000", "size": 743760, "mimeType": "application/octet-stream; charset=ISO-8859-1" }, { "id": "39622", "filename": "diagnostic7833861243361200242.log", "author": { "name": "4rensycs", "key": "4rensycs", "displayName": "Ron Arnold", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2013-06-08T18:18:55.000+0000", "size": 7042, "mimeType": "application/octet-stream; charset=ISO-8859-1" } ], "flagged": false, "summary": "Date Picker", "creator": { "name": "4rensycs", "key": "4rensycs", "displayName": "Ron Arnold", "active": true, "timeZone": "America/Los_Angeles" }, "subtasks": [], "reporter": { "name": "4rensycs", "key": "4rensycs", "displayName": "Ron Arnold", "active": true, "timeZone": "America/Los_Angeles" }, "environment": "Titanium Studio 3.1.0", "comment": { "comments": [ { "id": "257313", "author": { "name": "clathrop", "key": "clathrop", "displayName": "Carter Lathrop", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Hello Ron,\n\nCan you please provide test case that shows the behavior? A simple test case of under 50 lines in the form of an app.js should be able to show the bug behavior and will allow for mutual understanding of the problem on both sides and ensure a quicker review time. For future reference:\n\nhttps://wiki.appcelerator.org/display/guides/How+to+Submit+a+Bug+Report\n\nRegards,\nCarter", "updateAuthor": { "name": "clathrop", "key": "clathrop", "displayName": "Carter Lathrop", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2013-06-11T23:48:25.000+0000", "updated": "2013-06-11T23:48:25.000+0000" }, { "id": "283169", "author": { "name": "mrahman", "key": "mrahman", "displayName": "Mostafizur Rahman", "active": true, "timeZone": "Asia/Dhaka" }, "body": "Hello,\r\nI tested this issue the test code below. It is most likely fixed or this feature already exists. Please test this issue using the latest release and let us know your feedback. In my sample code, I used date picker with max and min date and an also add submit button for display picker value in console. \r\n\r\n \r\nh5. Testing Environment:\r\nTi CLI 3.3.0\r\nTi Studio build: 3.2.0.201311272052\r\nTitanium SDK: 3.1.3 and later \r\nAndroid SDK: 2.3.3\r\niOS -Simulator -iPhone Retina 3.5 inch/iOS 7.0\r\nAndroid Device-4.2.2\r\n \r\n\r\n \r\n h5. Test Case\r\n {code}\r\nvar win = Titanium.UI.createWindow({\r\n\tlayout : 'vertical',\r\n\ttitle : 'TextField Test',\r\n\tnavBarHidden : false\r\n});\r\n\r\nvar picker = Ti.UI.createPicker({\r\n\ttype : Ti.UI.PICKER_TYPE_DATE,\r\n\tminDate : new Date(2009, 0, 1),\r\n\tmaxDate : new Date(2014, 11, 31),\r\n});\r\n\r\nwin.add(picker);\r\n\r\nvar submit = Ti.UI.createButton({\r\n\ttitle : 'Submit',\r\n\r\n});\r\n\r\nsubmit.addEventListener('click', function() {\r\n\r\n\tTi.API.info('createPicker: ' + picker.value);\r\n});\r\n\r\nwin.add(submit);\r\n\r\nwin.open();\r\n\r\n{code}\r\n\r\nh5. Steps to Reproduce:\r\n# Create a simple project.\r\n# Update this code in app.js \r\n# Run this with testing environment\r\n# Code will display date picker and submit button\r\n# Click on button \r\n# Date picker value will display in console \r\n \r\n\r\n\r\nThanks\r\n", "updateAuthor": { "name": "ragrawal", "key": "ragrawal", "displayName": "Ritu Agrawal", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2013-12-09T06:44:05.000+0000", "updated": "2013-12-11T19:11:31.000+0000" }, { "id": "283850", "author": { "name": "ragrawal", "key": "ragrawal", "displayName": "Ritu Agrawal", "active": true, "timeZone": "America/Los_Angeles" }, "body": "[~4rensycs] We tried to build a sample test case for date picker and its working fine for us. Please use the above test case and let us know if the problem still persists.", "updateAuthor": { "name": "ragrawal", "key": "ragrawal", "displayName": "Ritu Agrawal", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2013-12-11T19:10:23.000+0000", "updated": "2013-12-11T19:10:23.000+0000" }, { "id": "286065", "author": { "name": "shossain", "key": "shossain", "displayName": "Shak Hossain", "active": false, "timeZone": "America/Los_Angeles" }, "body": "Closing as the feature exist in current build of the sdk. A sample illustrating this was posted.", "updateAuthor": { "name": "shossain", "key": "shossain", "displayName": "Shak Hossain", "active": false, "timeZone": "America/Los_Angeles" }, "created": "2013-12-28T06:49:20.000+0000", "updated": "2013-12-28T06:49:20.000+0000" } ], "maxResults": 4, "total": 4, "startAt": 0 } } }