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

Calendar days condition

In the application I need to set the condition that on a certain day of the week one variable will be true. For example if Calendar.day == monday { var mon = true } I know that this is not right. But for now I do not quite understand how days of…
jojiReptiloid
  • 286
  • 1
  • 10
3
votes
1 answer

Algorithm for Scheduling One Appointment in Already Full Schedule

I'm building a calendar scheduling application for, let's say a plumbing company. The company has one or more plumbers, who each have a schedule of appointments at different times throughout the day. So Josh's schedule on May 30th might include a…
Jaden Baptista
  • 656
  • 5
  • 16
3
votes
3 answers

How to convert from Hijri Date to Georgian Date and vice versa

I am looking for a way to calculate for example how many days it is from now, to a specific Date AND that I can use to determine whether I am in a specific time period (eg. Muharram +- 5days) or not I have been looking for over 10hours now, and the…
Visonge
  • 99
  • 8
3
votes
0 answers

Calendar swiftUI with events

Is there a way to create a custom calendar where you can add events and all that things inside a swiftUI app? I have searched but all I can find is custom date pickers. Or is there a way to implement it from swift ? Thanks
3
votes
1 answer

Issues with react-big-calender

I'm working with calenders for the first time in react and found react-big-calender interesting. I've created the calender with some events but I'm experiencing some console errors which I'm not familiar with. Warning: Using…
Surya Mahla
  • 483
  • 5
  • 20
3
votes
2 answers

How to integrate an Azure Devops Calendar into Outlook

How can integrate an Azure DevOps Calendar into my Outlook (D365)?
Billafingen
  • 31
  • 1
  • 3
3
votes
2 answers

Annotate list of months with year

I have a list of several consecutive months, always including the current month. For example, as I write this it is April 2020, so a valid list could be any of the following: example1 = ["January", "February", "March", "April", "May"] example2 =…
Jordan Dimov
  • 1,268
  • 12
  • 26
3
votes
2 answers

ASP.Net Calendar/Events application

I'm wondering if there are any free calendar/event tracking applications for asp.net out there. I want to be able to plug something into my existing website that will let an admin log in and add events to a calendar. Users can then see a short list…
Micah
  • 111,873
  • 86
  • 233
  • 325
3
votes
1 answer

Create a dynamic ICS file that users can subscribe to

We have a website that users login to, and can then book on to courses. These courses and the bookings are stored in our SQL database against the user's UserID. On the course page the user is able to add the course to their Outlook calendar via a…
roxvox
  • 31
  • 5
3
votes
1 answer

How to get current displayed month in table_calendar package flutter

I'm building a calendar using the table_calendar flutter package. Other all things are done now just I want to get currently selected month from the calendar. I try to find out the way and try all the events but did not get success yet. Anyone have…
Ravindra Bhanderi
  • 2,478
  • 4
  • 17
  • 29
3
votes
1 answer

Display events on a Calendar on Android

I want to have a Calendar with a Month view displaying all the days and events on each day. I found CalendarView, but it doesn't really display events on the way I want. I kept researching and checking lots of results, until I came across a entire…
leoneboaventura
  • 415
  • 1
  • 3
  • 13
3
votes
2 answers

javascript implementation of java.util.calendar api

Is there a javascript equivalent implementation of java.util.Calendar API? It will be quite handy to do date manipulation with it around.
Prashant Bhate
  • 10,907
  • 7
  • 47
  • 82
3
votes
2 answers

why LocalDate value did'nt set on today date

so i have 7 different button, i want to sethint on each button with current date++ orderly. DateTimeFormatter dateFormater = DateTimeFormatter.ofPattern("d"); ZoneId zone = ZoneId.of("Asia/Jakarta"); LocalDate date =…
3
votes
2 answers

React - useState hook access state

I have the following states: let [currentMonth, setCurrentMonth] = useState(new Date().getMonth()); const [checkIn_month, setCheckInMonth] = useState(null); I have an click event listener assigned directly to JSX's element tbody. Using event…
user11910832
3
votes
1 answer

Drupal Calendar, I want each user sees his own events only

I installed drupal 6 calendar module and it's working fine, but it shows all events for all users, i want to restrict that to show events for the user who already viewing now so i want my user to see his own events only, not other users events, how…
Mohamed Badr
  • 57
  • 1
  • 3