Re: ajax submit and IE

2009-08-28 Thread Dave Newton
Martin Gainty wrote: possibly XMLHttpRequest bug? when Underneath the UI layer you will need to match Struts (version 2) Dojo-plugin to Dojo (v 1.2) and then Dojo support for the ActiveX control Dojo 1.2? What in Quetzalcohuātl's macahuitl are you talking about? S2 uses Dojo 0.4.3; looking a

Re: ajax submit and IE

2009-08-28 Thread Mitch Claborn
Seeing this behavior in IE7. The div is very plain: I use other Javascript to show/hide shippingDiv as needed. Mitch Martin Gainty wrote: > possibly XMLHttpRequest bug? > >> when > >> Underneath the UI layer you will need to match Struts (version 2) > >> Dojo-plugin to Dojo (v 1.2) and then D

Re: ajax submit and IE

2009-08-28 Thread Mitch Claborn
Some possible workarounds: 1) add this to the textfield: onkeypress="return !(event && event.keyCode && event.keyCode == 13);" This is a bit of javacript that suppresses the enter key. 2) or this onkeypress="if (event && event.keyCode && event.keyCode == 13) {dojo.byId('ajaxShippingSub