简体   繁体   中英

How to disable previous date on edit using datetime picker

I am using date time picker.on edit page the selected value is not displaying. when I check the code element, I am seeing the result in value attribute. my code is

  $('#id').datetimepicker({
    format: 'DD/MM/YYYY',
    minDate:moment().millisecond(0).second(0).minute(0).hour(0),
    ignoreReadonly: true,
    useCurrent: false
  });

Any idea?

Try this:

$('#id').datetimepicker({
    format: 'DD/MM/YYYY',
    minDate: new Date(), // Or try minDate: 0
    ignoreReadonly: true,
    useCurrent: false
});

You may check this answer too.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM