Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dropdown not being updated to dynamic options through custom js, overridden to default. #3703

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

upendra-azad
Copy link

@upendra-azad upendra-azad commented Nov 19, 2024

Not able to overwrite dropdown from version 3.2 onwards, because of default here

this.element.html($('<option value="" selected="selected"></option>'));

it's done in (#3630).

my use case is that i am overwriting the states picklist based on country picklist through custom js.
and to make the new dropdown work after updating the options, i am using $(selector).filteringSelect('destroy') to reinitialize. but its being overwritten with that line, we can add one boolean flag to ignore that behaviour.

@upendra-azad upendra-azad force-pushed the filtering-select-not-updating-dropdown branch from 26b4d15 to 2dceb62 Compare November 19, 2024 10:16
@upendra-azad
Copy link
Author

upendra-azad commented Nov 23, 2024

Hi, Thanks for your attention, let me know if this is worth merging or not, so i can close this pr.

@coveralls
Copy link

Coverage Status

coverage: 96.178% (+0.3%) from 95.872%
when pulling 3b7b355 on upendra-azad:filtering-select-not-updating-dropdown
into e38c12d on railsadminteam:master.

@mshibuya
Copy link
Member

Thanks for the PR. Could you please show me your custom js?
I want to understand your usecase correctly. There can be a better way to achieve what you want, maybe.

@upendra-azad
Copy link
Author

upendra-azad commented Nov 24, 2024

Thanks for the PR. Could you please show me your custom js? I want to understand your usecase correctly. There can be a better way to achieve what you want, maybe.

Yeah sure, here is the sample code from erb file which i am using for state selection based on country selected dynamically.

<!--if "K" is the record class name -->

<%= form.select(:country, options_for_select(['usa', 'rome'], cvalue_from_db(k)), {include_blank: true}) %>

<%= form.select(:state, options_for_select(states_for_db_country(k) ,svalue_from_db(k)), {include_blank: true}) %>

<script type="text/javascript">
  let allStates = <%= {"usa"=>[["alaska", "ak"]], "rome"=>[]}.to_json(root: false).html_safe %>;

  $(function() {
    let countrySelector = document.querySelector("#k_country");
    countrySelector.addEventListener("change", function () {

      const selectedCountry = $("#k_country").val();
      const stateSelector = $("#k_state");

      stateSelector.empty(); // Clear existing options

      if (selectedCountry) {
        const statesForCountry = allStates[selectedCountry];

        if (!statesForCountry || statesForCountry.length === 0) {
          // Add a blank option if no states are available
          stateSelector.append($("<option>").val("").text(""));
        } else {
          // Populate states for the selected country
          statesForCountry.forEach(([sn, sv]) => {
            stateSelector.append($("<option>").val(sn).text(sv));
          });
        }

        refreshPicklist("#k_state"); // Refresh the picklist
      }
      
    });
  });


  function refreshPicklist(selector) {
    if ($(selector).siblings('div').length > 0) {
      // it does not refresh (picklist does not show) without line below. (note i am using rails admin version 3.1.4)
      try { $(selector).filteringSelect('destroy'); } catch (e) { }
      $(selector).filteringSelect();
    }
  }
</script>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants