agenda: show date picker button on date fields

Closes #5024
This commit is contained in:
Serghei Mihai 2014-06-30 18:17:00 +02:00
parent 859f69a1ba
commit 7044c059c8
1 changed files with 2 additions and 1 deletions

View File

@ -101,7 +101,8 @@ function add_dialog(on, url, title, width, btn_text) {
// function used to add patient schedules, events and acts
function init_dialog() {
$('#rdv .datepicker-date').datepicker({dateFormat: 'd/m/yy', showOn: 'button'});
$('.datepicker-date').datepicker({dateFormat: 'd/m/yy', showOn: 'button'});
$('.datepicker input').datepicker({dateFormat: 'd/m/yy', showOn: 'button'});
$('#id_description').attr('rows', '3');
$('#id_description').attr('cols', '30');
var deck = $('#id_participants_on_deck');