selva kumar

selva kumar

  • 1.6k
  • 123
  • 1.2k

how to enable future date enable 30-Apr-2025

Jan 25 2025 7:23 AM

 var minimumdate = document.getElementById("PageContent_hdnVdate").value;
        var currentDate = new Date("30/Apr/2025");
        function GetRestart1() {
            $("#<%=txt_installationDate.ClientID %>").datepicker({
                changeMonth: true,
                changeYear: true,
                dateFormat: "dd/M/yy",
                maxDate: currentDate,
                minDate: minimumdate,
                showOn: "button",
                showOn: "both",
                buttonImage: "../img/calendar.png",
                buttonImageOnly: true,
                onClose: function (selectedDate) {
                    $("#<%=txt_installationDate.ClientID %>").datepicker("option", "minDate", selectedDate);
                }
            });
        }


Answers (1)