certificate.js 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. function dateCertificateSwitchRadioButton2(){
  2. $("#date_start").prop("disabled", true).val("");
  3. $("#date_end").prop("disabled", true).val("");
  4. }
  5. function dateCertificateSwitchRadioButton1(){
  6. $("#date_start").prop("disabled", false);
  7. $("#date_end").prop("disabled", false);
  8. }
  9. function dateCertificateSwitchRadioButton0(){
  10. $("#date_start").prop("disabled", true).val("");
  11. $("#date_end").prop("disabled", true).val("");
  12. }
  13. function typeDateExpedictionSwitchRadioButton(){
  14. $("[name=\"type_date_expediction\"]").each(function( index ) {
  15. if ( $(this).is(":checked") && $(this).val() === "2") {
  16. $("#day, #month, #year").prop("disabled", false);
  17. } else {
  18. $("#day, #month, #year").prop("disabled", true);
  19. }
  20. });
  21. }
  22. function contentsTypeSwitchRadioButton(){
  23. $("[name=\"contents_type\"]").each(function( index ) {
  24. if ( $(this).is(":checked") && $(this).val() === "2") {
  25. $("#contents").prop("disabled", false);
  26. } else {
  27. $("#contents").prop("disabled", true);
  28. }
  29. });
  30. }
  31. $(document).ready(function() {
  32. $( ".datepicker" ).datepicker();
  33. });