Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to control Calendar outside the component #3764

Open
mydnic opened this issue Apr 1, 2025 · 3 comments
Open

How to control Calendar outside the component #3764

mydnic opened this issue Apr 1, 2025 · 3 comments
Labels
question Further information is requested v3 #1289

Comments

@mydnic
Copy link

mydnic commented Apr 1, 2025

Description

I'm using UCalendar in my project, and I'd like to be able to trigger the previousMonth and nextMonth buttons, but with my own buttons, outside the component.

Something like this

<button @click="customPrevMonth">previous</button>
<button @click="customNextMonth">next</button>

<UCalendar ref="customCalendar" />

I tried to check this.$refs.customCalendar if I could find any exposed method, but got nothing.

Do you know how and if this is feasible ?

@mydnic mydnic added question Further information is requested v3 #1289 labels Apr 1, 2025
@EvanSchleret
Copy link

It's just a workaround but you could do that by subtracting or adding a month to the date passed to the calendar.

<script setup lang="ts">
import { CalendarDate } from '@internationalized/date'

const date = ref(new CalendarDate(2025, 4, 2))
</script>

<template>
    <UButton @click="() => date = date.subtract({ months: 1 })">
        previous
    </UButton>

    <UButton @click="() => date = date.add({ months: 1 })">
        next
    </UButton>

    <UCalendar v-model="date" />
</template>

@mydnic
Copy link
Author

mydnic commented Apr 2, 2025

That works ! thanks a lot :)

Might be a good idea to document it. I though the model-value was only for selected dates

@EvanSchleret
Copy link

I'll propose something in a PR later. Glad that is solves your issue :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Further information is requested v3 #1289
Projects
None yet
Development

No branches or pull requests

2 participants