creativetimofficial / ct-paper-dashboard-pro

Paper Dashboard PRO
6 stars 2 forks source link

inline datepicker #28

Closed HansdeGroot closed 5 years ago

HansdeGroot commented 5 years ago

Hi,

In the example 'Extended form' page of the Paper Dashboard Pro, I pasted this code taken from Eonasdan. But it just doesn't work, nothing shows.

Does the implementation of this datepicker by Creative Tim differs?

<div style="overflow:hidden;">
    <div class="form-group">
        <div class="row">
            <div class="col-md-8">
                <div id="datetimepicker12"></div>
            </div>
        </div>
    </div>
    <script type="text/javascript">
        $(function () {
            $('#datetimepicker12').datetimepicker({
                inline: true,
                sideBySide: true
            });
        });
    </script>
</div>