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
Nested field declaration does not work if child item has the same key name than its parent and parent key is introduced after child in JSON data.
final String json = '[' '{ "sub": { "id": "A-sub" }, "id": "A" },' '{ "sub": { "id": "B-sub" }, "id": "B" } ' ']'; var columns = [ JsonTableColumn("id", label: "Id"), JsonTableColumn("sub.id", label: "Sub Id") ];
Expected result:
Id Sub Id -- ------ A A-sub A B-sub
Actual result:
Id Sub Id -- ------ A A A B
The text was updated successfully, but these errors were encountered:
Looks weird. I already use it in my project. Wait will check
Sorry, something went wrong.
Wait will check
Hi apgapg! Any progress?
No branches or pull requests
Nested field declaration does not work if child item has the same key name than its parent and parent key is introduced after child in JSON data.
Expected result:
Actual result:
The text was updated successfully, but these errors were encountered: