JBZoo icon indicating copy to clipboard operation
JBZoo copied to clipboard

Время по умолчанию (от и до) дать возможность задать

Open CB9TOIIIA opened this issue 3 years ago • 0 comments

image

image

image

https://github.com/JBZoo-CCK/JBZoo/blob/b396db9fa585abf038134dd79470728b353a8b3e/src/packages/jbuniversal/jbuniversal/cart-elements/shipping/courier/courier.php#L176

  • Желательно также дать возможность сделать поле readonly
  • Ограничить промежуток выбора в календаре
  • Подумать над валидацией даты в RU формате (d.m.y)
jQuery(document).ready(function() {

jQuery.datepicker.setDefaults(jQuery.datepicker.regional['ru']);

  jQuery('.calendar-input').datepicker({
        dateFormat: 'yy-mm-dd',
        constrainInput: true,
        minDate: "+6",
        maxDate: "+15"
	});

  jQuery(".zoo-calendar").on("click", function(){
        jQuery(this).siblings("input").datepicker("show");    
  });

 jQuery(".jsJBCartShipping .calendar-input").prop('readonly', true);
          
}); 
 
 </script>```

CB9TOIIIA avatar Oct 21 '21 07:10 CB9TOIIIA