Hello,
I have a custom html for team start and end date.I want to change the format. For example; 21.06.2018
But I'm getting this error at the console;
I have a custom html for team start and end date.I want to change the format. For example; 21.06.2018
HTML Code:
<div class="row"> <div class="cell col-sm-3 form-group"> <label class="control-label"><span class="label-text">Start Date</span></label> <div class="input-group"> <input class="main-element form-control datepicker" name="startdate" type="text" value="{{startDate}}" placeholder="Tarih Seçiniz" autocomplete="off"> </div> </div> <div class="cell col-sm-3 form-group"> <label class="control-label"><span class="label-text">End Date</span></label> <div class="input-group"> <input class="main-element form-control datepicker" name="enddate" type="text" value="{{endDate}}" placeholder="Tarih Seçiniz" autocomplete="off"> </div> </div> </div> <script src="https://code.jquery.com/jquery-1.12.4.js"></script> <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script> <script> $(function() { $( ".datepicker" ).datepicker({ dateFormat: 'dd-mm-yy' }); }); </script>
Code:
[COLOR=#FF0000]http://www.espo.crm/api/v1/https://code.jquery.com/ui/1.12.1/jquery-ui.js?_=1529575847824 403 (Forbidden)[/COLOR]
Comment