Titanium JIRA Archive
Appcelerator Community (AC)

[AC-2166] Calender Picker

GitHub Issuen/a
TypeBug
Priorityn/a
StatusClosed
ResolutionNeeds more info
Resolution Date2013-06-20T21:09:42.000+0000
Affected Version/sn/a
Fix Version/sn/a
Componentsn/a
Labelsn/a
ReporterRon Arnold
AssigneeShak Hossain
Created2013-06-07T01:46:39.000+0000
Updated2016-03-08T07:41:09.000+0000

Description

Steps to Reproduce

inserted code from TI. When I get to the page that has the drop down box for the date picker it is large with the roll (month, day, year) then the calender. I would like only the caldender only. Additionally, when picking the date it does not show in the drop down box after selection.

Actual Result

entering the screen receive a two piece calender before other items are inputed that are above the calender drop down.

Expected Result

would like calender and the date to be shown in the box

Attachments

FileDateSize
.log2013-06-07T01:46:43.000+0000356422
diagnostic460510251992043358.log2013-06-07T01:46:47.000+00007042

Comments

  1. Carter Lathrop 2013-06-14

    Hello Ron, I would be glad to help you out with this issue. To clarify, you are seeing this issue on iOS correct? Also, is this the code you are testing with, it is from the TI docs here (http://docs.appcelerator.com/titanium/latest/#!/api/Titanium.UI.Picker-method-showDatePickerDialog)?:
       Ti.UI.backgroundColor = 'white';
       var win = Ti.UI.createWindow({
         exitOnClose: true,
         layout: 'vertical'
       });
       
       var picker = Ti.UI.createPicker({
         type:Ti.UI.PICKER_TYPE_DATE,
         minDate:new Date(2009,0,1),
         maxDate:new Date(2014,11,31),
         value:new Date(2014,3,12),
         top:50
       });
       
       win.add(picker);
       win.open();
       
       picker.addEventListener('change',function(e){
         Ti.API.info("User selected date: " + e.value.toLocaleString());
       });
       
    If not, please provide the code sample where you are seeing this issue as it will ensure that we are both on the same page and I can assist you further. For this code sample, I am only able to see a scrollable date picker. Would you mind elaborating on how to see the calendar or provide the code that shows this? Thanks, Carter
  2. Shak Hossain 2013-12-09

    We have not heard back from you since you posted the issue. Not sure if you had a chance to try out the recommendations posted by Carter. If are still having an issue, please send us a test case so that we can take next necessary step to fix. If we don't hear back, we will assume the issue is no longer valid and close it.
  3. Shak Hossain 2013-12-28

    Closing since there is no response back from Ron.

JSON Source