Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-20303] Windows: Add support for Calendar View

GitHub Issuen/a
TypeImprovement
PriorityMedium
StatusReopened
ResolutionUnresolved
Affected Version/sRelease 8.0.0
Fix Version/sn/a
ComponentsWindows
Labelsn/a
ReporterLeor Brenman
AssigneeKota Iguchi
Created2016-02-02T15:17:14.000+0000
Updated2019-06-17T01:50:58.000+0000

Description

Add support for Native Calendar for Windows Phone In client's app, the calendar view is used to select the date in Search and Payment Details Screen. Currently Calendar (http://docs.appcelerator.com/platform/latest/#!/api/Titanium.Calendar) is not supported on Windows Phone

Attachments

FileDateSize
Screen Shot 2016-02-02 at 10.15.52 AM.png2016-02-02T15:16:07.000+0000171574

Comments

  1. Christopher Williams 2016-02-02

    This is a duplicate of the linked tickets, which break down the various Calendar APIs further.
  2. Fokke Zandbergen 2016-02-03

    The point is that the client (their service provider) is looking for this UI, not the APIs to interact with the actual Calendar. I already let them know this is not a native control on any platform and something they should custom built.
  3. Christopher Williams 2016-02-03

    Windows does have a CalendarDatePicker: https://msdn.microsoft.com/en-us/library/windows/apps/windows.ui.xaml.controls.calendardatepicker.aspx and a CalendarView: https://msdn.microsoft.com/en-us/library/windows/apps/windows.ui.xaml.controls.calendarview.aspx Also see https://msdn.microsoft.com/en-us/library/windows/apps/hh465466.aspx So they should be able to at least try to use hyperloop/Direct native API access to try and use those types:
       var CalendarDatePicker = require('Windows.UI.Xaml.Controls.CalendarDatePicker');
       var calendarDatePicker = new CalendarDatePicker();
       
    But yeah, this isn't an API we have for any platform, this must come from a module or their own code.
  4. Christopher Williams 2016-02-03

    Re-opening since this isn't a duplicate of the Ti.Calendar APIs...

JSON Source