activeadmin-plugins / active_admin_datetimepicker

:calendar: active_admin_datetimepicker gem
MIT License
73 stars 47 forks source link

Intermittent datepicker issues with filters #81

Open x9sim9 opened 1 year ago

x9sim9 commented 1 year ago

When using the datepicker with activeadmin filter, the datepicker when clicking on the input field seems to be very buggy, sometimes showing the datepicker other times not triggering at all.

If you click on a filter field, somewhere else on the page and click back on the field a few times it replicates the issue. Sometimes the page loads and it is not shown at all.

No java-script console error messages are being shown.

ruby 2.7.5p203 Rails 6.1.4.4 activeadmin 2.13.1 active_admin_datetimepicker 1.0.0

intializer

# This if for the front-end JavaScript side
ActiveAdminDatetimepicker::Base.default_datetime_picker_options = {
  format: 'd/m/Y H:i',
  defaultTime: proc { Time.current.strftime('%H:00') },
  defaultDate: proc { Time.current.strftime("%d/%m/%Y 00:00") }
}
# This if for the Ruby backend
ActiveAdminDatetimepicker::Base.format = "%d/%m/%Y %H:%M"

activeadmin filter

filter :appointment_date, as: :date_time_range

sass variables

$filter-field-seperator-width:100;
$side-by-side-filter-input-width:100;
workgena commented 10 months ago

Can not reproduce.