Re: T5.1: onclick not called in actionLink with updateZone in IE

2010-05-05 Thread Howard Lewis Ship
Don't use the onclick attribute, it gets overwritten. Use Prototype's observe(): $(linkId).observe("click", function() { startProcessingWheel( ... ); }); On Wed, May 5, 2010 at 2:14 PM, DavidWei wrote: > > > Hi, > > In the application I am working on, I like to show a processing wheel > turni

T5.1: onclick not called in actionLink with updateZone in IE

2010-05-05 Thread DavidWei
Hi, In the application I am working on, I like to show a processing wheel turning when processing "Delete" action. After deletion is done, it will refresh the update zone with some sort of messages related to "Delete" and stop processing wheel. It works in Firefox, but not in IE because the oncl