You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 3, 2020. It is now read-only.
I would like to use bulma-calendar in a form. However, when pressing the X (button with class datetimepicker-clear-button) to clear calendar value, the form is submitted and the application redirects me to localhost (on development machine).
Is there a way to stop submitting the form?
The only way I found to do it is modifying the calendar HTML and changing <button class="datetimepicker-clear-button"> to <button type="button" class="datetimepicker-clear-button"> but that means touching the component.
thank you
The text was updated successfully, but these errors were encountered:
@jcheng77 Wouldn't the user be confused by the presence of a button that can't be used? Also, there will be no way of clearing out the date as the input field is disabled with Bulma (if I remember correctly).
Hi,
I would like to use bulma-calendar in a form. However, when pressing the X (button with class
datetimepicker-clear-button
) to clear calendar value, the form is submitted and the application redirects me to localhost (on development machine).Is there a way to stop submitting the form?
The only way I found to do it is modifying the calendar HTML and changing
<button class="datetimepicker-clear-button">
to<button type="button" class="datetimepicker-clear-button">
but that means touching the component.thank you
The text was updated successfully, but these errors were encountered: