Re: [Proto-Scripty] Re: Problem with ajax/json service

2011-02-28 Thread chris williams
Event.stop(event); Is the line T.J is hinting at. Equally for those who have yet to discover it. var e = Event.element(event); Will give you the element that has triggered the event, this is highly useful for when you use bubbling. Chris On 27 February 2011 09:18, T.J. Crowder

[Proto-Scripty] Delay function fails element.GetElementsByTagName is not a function

2011-02-28 Thread kstubs
I'm getting the error element.GetElementsByTagName is not a function when using the delay function like this: $('test').update.delay(3,'update text'); Am I doing something wrong? Karl.. -- You received this message because you are subscribed to the Google Groups Prototype script.aculo.us

Re: [Proto-Scripty] Delay function fails element.GetElementsByTagName is not a function

2011-02-28 Thread Jusuff
W dniu 2011-02-28 09:56, kstubs pisze: I'm getting the error element.GetElementsByTagName is not a function when using the delay function like this: $('test').update.delay(3,'update text'); Try: Element.update.delay(3, 'test', 'update text'); Greets Jusuff -- You received this message

[Proto-Scripty] Force CSS selector engine to not use Selectors API

2011-02-28 Thread polygone
I have a CSS selector set up to use some CSS3 selectors to query the DOM: $$('*[class*=validate]') This has worked on all browsers for quite some time in one of our validation scripts. The problem arises when we switch to Prototype 1.6.1. Prototype 1.6.1 was designed to use IE8's 'Selectors

[Proto-Scripty] Testing with IE Tester

2011-02-28 Thread kstubs
Anyone using IE Tester to test their code? I'm not having any luck with it, first of all doesn't seem to support the dom:loaded event. Maybe I should be more persistent with this utility; let me know if you have good/bad success with this utility. Thanks, Karl.. The site:

Re: [Proto-Scripty] Testing with IE Tester

2011-02-28 Thread Brian Williams
I had problems with it as well; in my instance I found that IETester was using the ie8 rendering engine when I was trying to test IE6... yeah, wasn't useful at all. That was about a year ago. Just finally broke down and started using a VM of windows XP with no IE updates for IE7 and have given

[Proto-Scripty] Updating arbitrary table entries

2011-02-28 Thread Jason 'XenoPhage' Frisvold
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi all, I'm looking for some advice on how to update a specific field in a table. Given the following table : table tr td a href='#' onclick='editTags()'Edit/a input type='text' name='taglist[]' value='' / /td /tr

Re: [Proto-Scripty] Updating arbitrary table entries

2011-02-28 Thread Walter Lee Davis
On Feb 28, 2011, at 11:13 PM, Jason 'XenoPhage' Frisvold wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi all, I'm looking for some advice on how to update a specific field in a table. Given the following table : table tr td a href='#' onclick='editTags()'Edit/a