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
I have a table inside the modal and inside the table in a row I have a button that shows the calendar, but it does not show correctly after the second click. y think the problem its the scroll
here's my code:
// Aparición de modal y manejo de calendario semantic ui
$('#cotizar_btn').click(function(){
$('.ui.modal').modal('show');
valInputDate();
// Calendario listo para usarse en cualquier lado
$('.ui.calendar').calendar({
type: 'date',
onChange(date, text, mode){
let day = date.getDate();
let month = date.getMonth() + 1;
let year = date.getFullYear();
I have a table inside the modal and inside the table in a row I have a button that shows the calendar, but it does not show correctly after the second click. y think the problem its the scroll
here's my code:
// Aparición de modal y manejo de calendario semantic ui
$('#cotizar_btn').click(function(){
$('.ui.modal').modal('show');
valInputDate();
// Calendario listo para usarse en cualquier lado
$('.ui.calendar').calendar({
type: 'date',
onChange(date, text, mode){
let day = date.getDate();
let month = date.getMonth() + 1;
let year = date.getFullYear();
The text was updated successfully, but these errors were encountered: