Я изо всех сил пытаюсь использовать средство выбора даты на странице, созданной другом.Вот функция, которую он сделал, чтобы взимать плату за указатель даты для всплывающего окна.
$.post(
'/admin/clients/modal_fiche_prospect_ajax',
{
cid: cid
},
function( res ){
modal.find('.modal-title').text(cname);
modal.find('.modal-body').html(res);
//content pour le popover
$.post(
'/admin/clients/popover_ajax',
{ cid : cid },
function( res ){
$('[data-toggle="popover"]').popover({ content: res });
$('#myActionActiondate').bootstrapMaterialDatePicker({
time: true,
weekStart: 1,
format : 'DD/MM/YYYY HH:mm',
lang : 'fr',
cancelText : 'ANNULER'
});
}
);
}
);
})
Я пытаюсь сделать второй указатель даты для поповера, поэтому я попробовал много попыток, как это:
$.post(
'/admin/clients/modal_fiche_prospect_ajax',
{
cid: cid
},
function( res ){
modal.find('.modal-title').text(cname);
modal.find('.modal-body').html(res);
//content pour le popover
$.post(
'/admin/clients/popover_ajax',
{ cid : cid },
function( res ){
$('[data-toggle="popover"]').popover({ content: res });
$('#myActionActiondate').bootstrapMaterialDatePicker({
time: true,
weekStart: 1,
format : 'DD/MM/YYYY HH:mm',
lang : 'fr',
cancelText : 'ANNULER'
});
$('#date-picker-volume').bootstrapMaterialDatePicker({
time: true,
weekStart: 1,
format : 'DD/MM/YYYY HH:mm',
lang : 'fr',
cancelText : 'ANNULER'
});
}
);
}
);
})
, но когда я пытаюсь это сделать, ни один указатель даты больше не вылезает, и я действительно не вижу, как от этого избавиться.
вот один из шаблонов html:
<div class='fields'>
<div class='row mb-3'>
<div class='col'>
<label class='mb-1'>Montant</label>
<div class='input-group'>
<input class='amount-field text-right form-control' type='text' name='data['Client']['volume']' id='clientvolume' value='".$client['Client']['volume']."'>
<div class='input-group-prepend input-group-append'><span class='input-group-text'>€</span></div>
</div>
</div>
<div class='col pl-0'>
<label class='mb-1'>Probabilité</label>
<div class='input-group'>
<input class='probability text-right form-control' maxlength='3' size='3' type='text' name='' id=''>
<div class='input-group-append'><span class='input-group-text'>%</span></div>
</div>
</div>
</div>
</div>
<label class='d-block mb-1'><i class='fa-flag-checkered fa'></i>Date de closing estimée</label>
<div class='input-group mb-3' style='background:none'><input type='date' class='form-control' id='date-picker-volume'></div>
</div><input type='submit' name='commit' value='Enregistrer' id='btnValVolume' class='btn btn-outline-success'>
<button type="button" id="btnVolume" class="btn btn-light" data-html="true" data-placement="bottom" data-toggle="popover" data-content="<?php echo $popupvolume ?>"><?php echo $client['Client']['volume']." €"; ?></button>