Wednesday, May 1, 2024

Bootstrap datepicker only date and month - min date and max date - Start date and End date

 $("#datepicker").datepicker( {

    format: "mm-yyyy",

    startView: "months", 

    minViewMode: "months"

});



 $('[id*=txtdate]').datepicker({

        changeMonth: true,

        changeYear: true,

        format: "mm-yyyy",

        showButtonPanel: true,

        language: "tr",

        todayHighlight: true,

        autoclose: true,

        isRTL: true,

        endDate: dateTo,

        startView: "months",

        minViewMode: "months"

    });


$("#txtdate").change(function () {

        if ($("[id$=txtdate]").val() == '') {

            $("#txtdate").datepicker("setDate", month + '-' + (now.getFullYear()));

        }

    });


============================

--------------:Start Date:-------

$('[id*=txtdate]').datepicker({

        changeMonth: true,

        changeYear: true,

        format: "mm-yyyy",

        showButtonPanel: true,

        language: "tr",

        todayHighlight: true,

        autoclose: true,

        isRTL: true,

        endDate: dateTo,

        startDate: "01-1900",

        startView: "months",

        minViewMode: "months"

    });

No comments:

Post a Comment