vue-functional-calendar icon indicating copy to clipboard operation
vue-functional-calendar copied to clipboard

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

Open TitanFighter opened this issue 3 years ago • 1 comments

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 avatar Aug 01 '20 19:08 TitanFighter

As I understand, this issue duplicates this one

TitanFighter avatar Aug 01 '20 19:08 TitanFighter

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.

ManukMinasyan avatar Nov 02 '22 12:11 ManukMinasyan