v-date-picker not opening on desired month - vue.js

I'm working with a v-date-picker in my vue.js application. I'm trying to get it to open on a specific month. I set the min prop to a certain date in order to disable any date before the min date. If this min date is on a future month, it would be nice if the date picker would open on that month instead of the current month. I'm not able to get it to do this.
There is this discussion:
https://github.com/nathanreyes/v-calendar/issues/113
...which says that there is a bug in the v-date-picker for setting the month it opens on, but none of the solutions or work arounds work for me.
Any help would be much appreciated. Thanks.

use "show-current" attribute you can open your calendar with the desired date. <v-date-picker v-model="month1" show-current="2013-18" type="month"></v-date-picker>
check this link.
https://codepen.io/neha-shivhare/pen/ZEXXMdE?editors=101

Related

Is there a way to use a variable/combo box to select a year in a date without using date picker

I am working on a calculator to track my (and my coworkers may use it) overtime at work. We have a bunch written in excel, but I am trying to do one in access. There is probably a simple solution, but having searched for a couple days for using a variable in a date has only given me how to use the date as a variable. So our pay periods are defined 1/1/yyyy to 1/15/yyyy etc. Hour pay is calculated on the number of days we have in a pay period which varies every year by days off. I have it calculating the proper number of days using VBA, but I am having difficulty getting it to use the combo box year which defaults to current year.
I have tried setting the control source to = 01/01/[cmbYearselect]
using variables, creating a string in vba and format date
Any help would be appreciated as I am going to have to use the variable in both the control sources and vba code.
Thank you
01/01/[cmbYearSelect] results in 12/30/1899 on my form
everything else has resulted in a type mismatch for the variables etc.
Use CDate with no year:
=CDate(#01/01#)
or:
=CDate("01/01")
to have primo of the current year.

How to report on the last day of each month SSRS

What is the best way to run the report every month on the last day in report service web portal?
It seems pretty straightforward but I could not seem to find a direct way to do this.
Use "On week of month" instead of On calendar day(s).
Pick "Last", check all weekdays.
enter image description here

Choose a specific month or week when rendering a Vuetify calendar

When the page loads I would like to be able to specify which week or month is being displayed in vuetify for week and month calendars, respectively. So far I Haven't found a way to do this on page load. It appears to show me the month or week that includes today's date no matter what I do.
Okay, so it appears that you simply need to set the calendar's v-model or value to a simple string, i.e. '01-01-2020'.

How to show the enabled dates directly in p-calender

I have an input field that uses the component. Say I have disabled the dates till 15th May. When I click on the calender, the current month is shown as April and all dates in it are disabled. How can I make the current month as the one that doesn't have disabled dates? (May month in this case)
Use defaultDate to display the current month you want to first display. The defaultDate is only applicable if ngModel is not initially set. See similar issue (Primeng: p-calender default date not working).
<p-calendar [(ngModel)]="startDate" [disabledDates]="invalidDates" [defaultDate]="defaultDate" showIcon="true"></p-calendar>
Stackblitz example

I need calendar similar to this

I need a calendar with the same functionality as this one:
calendar
I want date in input box and by clicking on the individual values ​​(month, day, year) date was changed, and I was able to choose date from the drop down list.
Does anyone know of something similar?
For some reason I can not use this calendar
new version avaiable at
http://www.hotscripts.com/listing/convenient-javascript-calendar-date-picker/