gigebyte / cookies

Automatically exported from code.google.com/p/cookies
0 stars 0 forks source link

cookify/cookieFil name/id problem #29

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
If you have a different id and name for the same object, cookify and cookieFill 
do not work . 
The reason is how they access the name/id attributes. In particular cookify 
iterates on ['name','id'] while cookieFill uses ['name','id'] as a stack, 
reversing the order in which the attributes are accessed.
I made my own fix by using the same algorithm for both; randomly choosing the 
array iteration of cookify, which seems to work.

Original issue reported on code.google.com by jonoo...@gmail.com on 30 Jun 2010 at 7:47

GoogleCodeExporter commented 9 years ago
BTW, this is probably the same as defect #19, but since it's not connected to 
any particular object such as a radiobutton, I listed it separately. The fix is 
pretty simple.

Original comment by jonoo...@gmail.com on 30 Jun 2010 at 7:48

GoogleCodeExporter commented 9 years ago
Hi jonoogle,

Thanks for the report. you're right, this is the same problem as Item #19 so 
will close this as duplicate.  You're also right that the direct fix is not too 
difficult, however what I have discovered in troubleshooting the problem is 
that it's roots run deep and effect other things. This is actually the biggest 
issue on my list and I need to sit down and rewrite some things to take better 
advantage of the jQ selector engine.

Thanks,
Jim

Original comment by auldrid...@gmail.com on 10 Nov 2010 at 11:43