footer : BooleanDefault: false

If set to true, add footer with ok and cancel buttons to the datetimepicker.

Examples

True

    
 <input id="input" width="312" />
 <script>
    $('#input').datetimepicker({ footer: true, modal: true, header: true });
 </script>

  

False

    
 <input id="input" width="312" />
 <script>
    $('#input').datetimepicker({ footer: false });
 </script>