We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In the example present at https://selecttransform.github.io/site/transform.html 10. Local Variables
I want a unified array rather than array of arrays.
e.g.
{ "rows": [ [ { "type": "label", "text": "Alice in Wonderland" }, { "type": "label", "text": "Bob in Wonderland" }, { "type": "label", "text": "Bart in Springfield" }, { "type": "label", "text": "Marge in Springfield" }, { "type": "label", "text": "Lisa in Springfield" }, { "type": "label", "text": "Homer in Springfield" }, { "type": "label", "text": "Maggie in Springfield" } ] ] }
rather than
{ "rows": [ [ { "type": "label", "text": "Alice in Wonderland" }, { "type": "label", "text": "Bob in Wonderland" } ], [ { "type": "label", "text": "Bart in Springfield" }, { "type": "label", "text": "Marge in Springfield" }, { "type": "label", "text": "Lisa in Springfield" }, { "type": "label", "text": "Homer in Springfield" }, { "type": "label", "text": "Maggie in Springfield" } ] ] }
I couldn't achieve this, is it possible ?
The text was updated successfully, but these errors were encountered:
I did not find a solution to this problem. And so I altered the library.
I already created a pull request here. Feel free to use it.
Sorry, something went wrong.
No branches or pull requests
In the example present at https://selecttransform.github.io/site/transform.html 10. Local Variables
I want a unified array rather than array of arrays.
e.g.
rather than
I couldn't achieve this, is it possible ?
The text was updated successfully, but these errors were encountered: