Alexander Morozov
Alexander Morozov
Is any solutions available?
I'm a bit perplexed that this bug has persisted for over a year. It becomes challenging to develop within the Telegram ecosystem when I continually encounter such issues. Additionally, I'd...
What is the difference between recurrence ends and subscription ends?
Let's consider an example: I have a monthly subscription that started_at is 01.01.2024 and expired_at is 31.01.2024. When I use the ->renew() method, I expect it to update the subscription...
However, the ->renew() method adds a month to the expired_at date or now() instead of adding it to the started_at date, contrary to what is described.
> @e4se for now, u can try managing focus manually? https://codesandbox.io/p/devbox/blissful-butterfly-5fqtfl?file=%2Fsrc%2FApp.vue%3A14%2C3 In our scenario, we have numerous fields within a tooltip, including select and datepicker components, which need to control...
@KABBOUCHI Hi, have you had a chance to look into the issue?
For now, this can be resolved using the following approach before the touch method `form.validator().reset()`
I forgot about `onBeforeValidation` hook. Like This: ``` form.validator().reset(); form.touch([ 'name', 'description', ]).validate({ onBeforeValidation: (newRequest) => { return true }, onSuccess: () => { }, }); ```