Comments on: Bootstrap Datetimepicker – Add DateTime Picker to Input Field using jQuery https://www.codexworld.com/bootstrap-datetimepicker-add-date-time-picker-input-field/ Web & Mobile App Development Company Fri, 30 Aug 2019 16:43:45 +0000 hourly 1 By: Akinwumi Ayotunde https://www.codexworld.com/bootstrap-datetimepicker-add-date-time-picker-input-field/comment-page-1/#comment-92278 Fri, 30 Aug 2019 16:43:45 +0000 https://www.codexworld.com/?p=2326#comment-92278 how do i add date on two diffrent text fields

]]>
By: Sadick https://www.codexworld.com/bootstrap-datetimepicker-add-date-time-picker-input-field/comment-page-1/#comment-80675 Tue, 19 Mar 2019 17:08:34 +0000 https://www.codexworld.com/?p=2326#comment-80675 hello, how do i save only the time into database.
i am using laravel though.
thanks.

]]>
By: Atul Kabadi https://www.codexworld.com/bootstrap-datetimepicker-add-date-time-picker-input-field/comment-page-1/#comment-70059 Sat, 24 Nov 2018 20:52:10 +0000 https://www.codexworld.com/?p=2326#comment-70059 Hi, could you also please share for 30 days select options for datepicker

]]>
By: Milan P https://www.codexworld.com/bootstrap-datetimepicker-add-date-time-picker-input-field/comment-page-1/#comment-70017 Sat, 24 Nov 2018 15:38:31 +0000 https://www.codexworld.com/?p=2326#comment-70017 Works perfectly – Many Thanks – Very useful routine btw

]]>
By: CodexWorld https://www.codexworld.com/bootstrap-datetimepicker-add-date-time-picker-input-field/comment-page-1/#comment-69577 Tue, 20 Nov 2018 18:46:38 +0000 https://www.codexworld.com/?p=2326#comment-69577 In reply to Js.

Bootstrap v3 has been used for this example, but you can use the upper version.

]]>
By: Js https://www.codexworld.com/bootstrap-datetimepicker-add-date-time-picker-input-field/comment-page-1/#comment-69352 Sun, 18 Nov 2018 10:39:21 +0000 https://www.codexworld.com/?p=2326#comment-69352 Which bootstrap version is used

]]>
By: CodexWorld https://www.codexworld.com/bootstrap-datetimepicker-add-date-time-picker-input-field/comment-page-1/#comment-69090 Thu, 15 Nov 2018 19:46:46 +0000 https://www.codexworld.com/?p=2326#comment-69090 In reply to Milan p.

Use the following code to disable time picker and display only the date picker.

<script>
    $('#datetime').datetimepicker({
        format: 'yyyy-mm-dd',
        weekStart: 1,
        todayBtn:  true,
        autoclose: true,
        todayHighlight: true,
        startView: 2,
        minView: 2,
        forceParse: 0
    });
</script>
]]>
By: Milan p https://www.codexworld.com/bootstrap-datetimepicker-add-date-time-picker-input-field/comment-page-1/#comment-68445 Wed, 07 Nov 2018 23:52:09 +0000 https://www.codexworld.com/?p=2326#comment-68445 I have downloaded the sourccecode but could not see how to use the scripts only for a date and not a date and time picker.
Is there an easy way to get the date only ?

]]>