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

'selectedRegions' option does not work with double-quoted input: ["MX"] #356

Open
fraballi opened this issue Aug 20, 2020 · 0 comments
Open

Comments

@fraballi
Copy link

fraballi commented Aug 20, 2020

Dear colleagues,
I need to load input data with Ajax dynamically and JS handles string arrays double-quoted so the map can't select regions.

Tried this, but the output is not correct:

//Note: 'data' is a model loaded via Ajax as: {"MX": "15.65", ..., }
       var keys = Object.keys(data).map(function (key) {
            return "'" + key + "'";   // Want: ['MX'], but get [" 'MX' "]
          });
   ...
       selectedRegions: keys.toString(),

Only setting static values works for me.

How can be done?

@fraballi fraballi changed the title 'selectedRegions' options does not work with double-quoted input: ["A", "B"] 'selectedRegions' options does not work with double-quoted input: ["MX"] Aug 20, 2020
@fraballi fraballi changed the title 'selectedRegions' options does not work with double-quoted input: ["MX"] 'selectedRegions' option does not work with double-quoted input: ["MX"] Aug 20, 2020
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

No branches or pull requests

1 participant