Rich Calendar week number - calendar

I'm wondering about disable the weekNumber in rich:calendar component of richfaces. Any suggestions?

just set
showWeeksBar="false"
on the rich:calendar tag

Related

react native date time picker modal, only show month and year

I'm using react-native-modal-datetime-picker. I only want to display month and year and hide dates, is there any way to hide date and only display month and year in react-native-modal-datetime-picker. If yes, can someone tell me how to do that?
Seems you can't achieve that using react-native-modal-datetime-picker
May be you could try react-native-month-selector or other library

How to set the displayed start and end date in the Codename One date picker?

I would like to display a date picker in my app, but I need to set the the limits on the earliest and latest shown dates. How can I do it with Codename One PickerComponent? Or are there any other better ways to do it?
Solution found - my PickerComponent must include both setStartDate() and setEndDate().
Example --

Big React Calender year view

I need help in react-big-calendar.Some of the view already in react-big-calender like days, week & agenda etc. but how can i add custom view for year view in react-big-calender.
I've been looking at the same, there is nothing out-of-the-box - I might use this as a starting point:
https://codesandbox.io/s/jjmky5047y
You will have to customise the react-big-calendar on your own for these features.

airbnb/react-dates Display Week Number on DayPickerRangeController

Using DayPickerRangeController from airbnb/react-dates (12.7.1), I would like to display the week number on the left of the day picker for each weeks.
Here is what I currently have
Here is what I would like to see on my calendar
Is there any prop that can help or is there an already existing solution?
airbnb/react-dates does not support any props to display the week no.
You can have a look at rc-calender as other alternative.
As mentionned by #ShridharBavannawa, there's currently no support for displaying week number. However, there's a related issue open on github where Jussi Niinikoski suggests a hack that help; Instead of displaying week number on the side of each week, one can display them in every date cell with the renderDayContents property as follow:
renderDayContents={(day) => (
<>
<p>{day.format('W')}</p>
<p>{day.format('D')}</p>
</>
)
Where day would be a momentJS object. You can then style the cell to your taste.

displaying two months in angular datepicker

I want to have a date picker which displays 2 months calendar at a time in angular. want the one like in this. Please suggest how to implement that in angular
The angular-daterangepicker from fragaria seems to match the requirements here.
There is a live demo of the picker here, just click on the date-range in the upper right corner to see it in action.
Datetime Range Picker is a good option too. Additionally, it has the time component.
http://rgkevin.github.io/datetimeRangePicker/#/home
i need use this for angular 2+ (in angular-material).
possible ?

Resources