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
data:{ items: { '01': 'One', '02': 'Two' } }
When iterating: index return '1' and '2', but must return '01', '02'
http://jsfiddle.net/94hc61L5/
The text was updated successfully, but these errors were encountered:
Looks like it's casting the index to a number, which is causing it to trim leading zeroes. For example,
data:{ items: { '0x000001': 'One', '02': 'Two' } }
This produces the same result in the js fiddle as just using '01'.
'01'
Sorry, something went wrong.
Merge pull request #1474 from evs-chris/gh-1444
f175879
Index refactor - RFC Fixes #1476, Fixes #1462, Fixes #1444
Successfully merging a pull request may close this issue.
data:{
items: {
'01': 'One',
'02': 'Two'
}
}
When iterating: index return '1' and '2', but must return '01', '02'
http://jsfiddle.net/94hc61L5/
The text was updated successfully, but these errors were encountered: