QSO - Counties issue, Darkly Issue #1182
-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
Hi. I recently moved the css files so that a theme only consists of 2 files instead of 4. You might need to empty cache to reload the files. I moved selectize.css (for the dropdown) to the base folder and but the theme specific things for selectize in overrides.css. When it comes to the counties, try writing the start of the county name, and it will filter. To get it to filter on state, you need to select a state. The reason I put 100 as the limit, was that loading too many would slow down the dropdown too much. 254 might work though. I also see in the code that you need to have at least one letter to make it filer (qso.js -> $('#input_usa_state').change(function(){) Perhaps the logic needs some fine tuning. Let me know if any of this helps you out. Andreas. |
Beta Was this translation helpful? Give feedback.
-
CTRL+F5 to clear caches in most browsers |
Beta Was this translation helpful? Give feedback.
Hi.
I recently moved the css files so that a theme only consists of 2 files instead of 4. You might need to empty cache to reload the files. I moved selectize.css (for the dropdown) to the base folder and but the theme specific things for selectize in overrides.css.
When it comes to the counties, try writing the start of the county name, and it will filter. To get it to filter on state, you need to select a state. The reason I put 100 as the limit, was that loading too many would slow down the dropdown too much. 254 might work though.
I also see in the code that you need to have at least one letter to make it filer (qso.js -> $('#input_usa_state').change(function(){) Perhaps the logic nee…