Thanks so much for taking the time to reproduce my scenario, Bob.

As much as it embarasses me saying this, the bug turned out to be in my
code (obviously) and it's as simple as this. I was writing:

var cb = INPUT({'type':'checkbox', 'name':'itemCheckbox',
'onclick':'toggleBar()', 'value':item.id}, null);

instead of:

var cb = INPUT({'type':'checkbox', 'name':'itemCheckbox',
'onclick':'toggleBar()', 'value':item.id});

That surplus 'null' 2nd argument was making a world of a difference,
apparently. I thought it was needed. Your test output showed me
otherwise and now it works. Though I'm sure the patch you pointed me to
earlier also helped, because this name attribute thing is a known IE6
issue from what I could gather.

Also, thanks for your suggestion about using Signal. Will do.

P.


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"MochiKit" 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/mochikit
-~----------~----~----~----~------~----~------~--~---

Reply via email to