Questions tagged [calendar]

A calendar is a system of reckoning time in which the beginning, length and divisions of a year are defined. The term may refer to a software class or library for the manipulation and display of calendar data, or to a list of events with associated dates and times, managed by a human via an application or operating system user interface.

Calendar in Primefaces:

Calendar is an input component used to select a date featuring display modes, paging, localization, ajax selection and more.

Value of the calendar should be a java.util.Date :

<p:calendar value="#{dateBean.date" />

public class DateBean{
   private date date;
}

Calendar in RichFaces :

The rich:calendar component allows you to select a date using a monthly calendar widget. It is possible to use the component in a popup or inline mode. In popup mode the calendar is initially rendered as an input for date with a button on the right side to trigger the popup.

<rich:calendar id="calendar" value="#{calendarBean.selectedDate}" />
13650 questions
3
votes
1 answer

Context data not being passed if called from different view function

I have this function, def event (request): all_events = Quiz.objects.filter(owner_id=request.user.pk, status="Assigned") get_event_types = Quiz.objects.filter(owner_id=request.user.pk, status="Assigned") context = {"events": all_events,…
Rohit Kumar
  • 684
  • 2
  • 17
  • 39
3
votes
0 answers

Adding event to samsung calendar

I have an issue related to calendar. I am using ContentResolver to add event to calendar. It works pretty well on any devices accept of samsung devices. When I am trying to add event to original samsung calendar nothing happens. But when I…
KeitL
  • 188
  • 2
  • 13
3
votes
0 answers

How to get same propfind response for each request while listing icloud calendars?

I am listing calendars from icloud using caldav request propfind, I am able to get the calendar collection, but the output differs for each run. The calendar-enabled and current-user-principal properties are missing some time and some time it…
Dhanashri
  • 31
  • 2
3
votes
1 answer

Calendar.DAY_OF_WEEK_IN_MONTH equivalent in ZonedDateTime in java8

I am trying to check Thanksgiving (4th Thursday of November). I have ZonedDateTime as 2019-11-23T08:43:14.699-07:00[America/Los_Angeles] How do I check whether it is4th Thursday or not using java 8 ZonedDateTime api In calendar we have…
Laxmi Kadariya
  • 1,103
  • 1
  • 14
  • 34
3
votes
1 answer

Angular 6+ calendar custom event template for WEEK view is not working

I am working on angular 6+ calendar. I want to add custom event template but it did not work. Actually i want to add a progress bar along with title and action buttons, This custom eventTemplate is not working, no events are being shown in the week…
Dev001
  • 276
  • 1
  • 7
  • 25
3
votes
0 answers

Vue + Vuetify customize calendar component for mobile

I have vuetify calendar component. This calendar (only on month type) is too big for mobile screen. Helper images: image 1 image 2 this my code:
Emil Majer
  • 143
  • 1
  • 3
  • 11
3
votes
5 answers

how to get minimum and maximum date from given month in java

how to get minimum and maximum date from given month in java using java.util.Calendar.
Annu
  • 532
  • 4
  • 8
  • 22
3
votes
0 answers

How do I implement Calendar Events from WKWebView into my iPhone?

I have a UIViewController in which a WKWebView is implemented. My problem is: I would like, because on the Websites URL is a button with a calendar event, import this into my app. In other words, if you push the pushed button a query appears in…
Shinox
  • 107
  • 12
3
votes
3 answers

VBA, Outlook, Seeing 'People's Calendars

I am tring to programmatically (with VBA) to access calendars others share with me. They are listed in my Outlook under 'People's Calendars.' I have searched the Web for this and all the suggestions have done little more than confuse me. How can I…
ForEachLoop
  • 2,508
  • 3
  • 18
  • 28
3
votes
1 answer

Python3 Panda's Holiday fails to NOT find dates in arbitrary periods in the past

Made my own definition of MLK Day Holiday that adheres not to when the holiday was first observed, but by when it was first observed by the NYSE. The NYSE first observed MLK day in January of 1998. When asking the Holiday for the days in which the…
ebergerson
  • 369
  • 2
  • 6
3
votes
2 answers

How to pass Java Date to .Net webservice using Axis

I'm trying to call a .Net webservice from Java. I have a java.sql.Date that I am converting to a Calendar which then gets passed through to .Net as a DateTime. Unfortunately, when it gets to the other side it is a day behind the date that was sent.…
mezoid
  • 28,090
  • 37
  • 107
  • 148
3
votes
1 answer

How to insert/copy one partition's data to multiple partitions in hive?

I'm having data of day='2019-01-01' in my hive table, I want to copy same data to whole Jan-2019 month. (i.e. in '2019-01-02', '2019-01-03'...'2019-01-31') I'm trying following but data is only inserted in '2019-01-02' and not in…
axnet
  • 5,146
  • 3
  • 25
  • 45
3
votes
2 answers

How can I calculate the week of the month from week of the year?

I found a node.js solution but couldn't find a python one. I have a DataFrame that looks like: Year Month Week numOfTrips 0 2011 July 30 2608 1 2011 August 31 6852 2 2011 August 32 8092 3 2011 August 33 …
Bn.F76
  • 783
  • 2
  • 12
  • 30
3
votes
2 answers

Horizontal scrollable calendar view

I want to create horizontally scrollable calendar view like below image. I have got some thirdparty libraries to create calendar view, but all those supports only normal calendar. I want minimized version of the calendar in horizontally scrollable…
Aju
  • 4,597
  • 7
  • 35
  • 58
3
votes
2 answers

How can I change the font of the Time4J CalendarPicker in JavaFX?

Is there a way to change the font of Time4J CalenderPicker in css-style? I needed a Persian DatePicker in my program so i used Time4J CalenderPicker. using this code i could change only the font of cells: CalendarPicker MyDatePicker…
Ahmad
  • 77
  • 5