The issue reported in tracker no. 3778 is causing difficulties when
using jQuery alongside the Spring MVC framework, as the framework uses
input names such as 'foo.bar[val]' for binding on Java objects. I was
just curious as to whether this ticket item is currently being looked
at as a fix in the next release.
Failing sample test cases are below. They require adding the hidden
input field
<input type="text" style="display:none;" name="test.faa[bear]"
id="hidden3"/>
to the test index.html file
t( "Attribute containing [] and '.'", "input[name='test.faa[bear]']",
["hidden3"] );
t( "Attribute containing [] and '\\.'", "input[name='test\\.faa
[bear]']", ["hidden3"] );
t( "Attribute containing [\\] and '\\.'", "input[name='test\\.faa[bear
\\]']", ["hidden3"] );
t( "Attribute containing \\[] and '\\.'", "input[name='test\\.faa\\
[bear]']", ["hidden3"] );
t( "Attribute containing \\[\\] and '\\.'", "input[name='test\\.faa\\
[bear\\]']", ["hidden3"] );
t( "Attribute containing \\[\\] and '.'", "input[name='test.faa\\[bear
\\]']", ["hidden3"] );
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"jQuery Development" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/jquery-dev?hl=en
-~----------~----~----~----~------~----~------~--~---