hi everyone
I'm using prototype 1.6 to do a widget that is a dynamic table. In
this table every colmn can be a form field like text field, lists,
radios buttons, textarea, etc. The problem that i'm facing occurs when
i do doble click to the text of textarea or textfield, IE send this
message "Object doesn't support this property or method" in line 651
of prototype.js
...
findAll: function(iterator, context) {
iterator = iterator.bind(context); //this is the line 651
var results = [];
this.each(function(value, index) {
if (iterator(value, index))
results.push(value);
});
return results;
},
...
Does any body have the same problem with clicks events.
Thanks for any help
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Prototype & script.aculo.us" 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/prototype-scriptaculous?hl=en
-~----------~----~----~----~------~----~------~--~---