ManukMinasyan / vue-functional-calendar

Vue.js Functional Calendar | Component/Package
https://vue-functional-calendar.now.sh/
MIT License
468 stars 84 forks source link

isMultiple + isDateRange + withTimePicker -> Time Picker proposes to add time just for the Start Date (and not for the End Date) #103

Closed TitanFighter closed 1 year ago

TitanFighter commented 4 years ago

Hi.

As I understand, time picker should be auto-opened when the End date is selected, but it does not.

<template>
  <FunctionalCalendar v-model="calendarData" :configs="calendarConfigs" show-week-numbers />
</template>
<script>

import { FunctionalCalendar } from 'vue-functional-calendar'

export default {
  name: 'Dates',

  components: {
    FunctionalCalendar
  },

  data () {
    return {
      calendarConfigs: {
        sundayStart: false,
        dateFormat: 'dd/mm/yyyy',
        isDatePicker: false,
        isModal: true,
        isDateRange: true,
        isMultiple: true,
        calendarsCount: 2,
        isAutoCloseable: true,
        withTimePicker: true
      }
    }
  }
}
</script>
TitanFighter commented 4 years ago

As I understand, this issue duplicates this one

ManukMinasyan commented 1 year ago

Hello. Thanks for your feedback. Now I don't have time to deal with the calendar. Please create pull requests, I will appreciate it, it will be useful for the community.