Projet

Général

Profil

0001-forms-notify-when-timetable-value-changes-51413.patch

Frédéric Péters, 01 mars 2021 08:44

Télécharger (987 octets)

Voir les différences:

Subject: [PATCH] forms: notify when timetable value changes (#51413)

 wcs/qommon/templates/qommon/forms/widgets/select-timetable.html | 1 +
 1 file changed, 1 insertion(+)
wcs/qommon/templates/qommon/forms/widgets/select-timetable.html
157 157
   $('#form_{{widget.name}}_table span').removeClass('on');
158 158
   $(this).addClass('on');
159 159
   $('#form_{{widget.name}}').val($(options[$(this).data('idx')]).attr('value'));
160
   $select.trigger('wcs:change');
160 161
  });
161 162
});
162 163
  $select.trigger('wcs:options-change');
163
-