Re: [Trinidad] - [IE] funny issue with form and defaultCommand

2007-09-20 Thread Matthias Wessendorf
reason is this script function changeValue(element) { element.value = element.id; } /script button id=foo onclick=changeValue(this);bar/button in FF, never the button-text is changed. -M On 9/20/07, Matthias Wessendorf [EMAIL PROTECTED] wrote: changed subject to better reflect the

Re: [Trinidad] - [IE] funny issue with form and defaultCommand

2007-09-20 Thread Adam Winer
OK, so looks like the issue is that for this submit, we have: var params = new Object(); params[src] = src; params['source'] = src; submitForm(frm,0,params); We set params['source'] = src; to handle Trinidad buttons. We set params[src] = src; to handle

Re: [Trinidad] - [IE] funny issue with form and defaultCommand

2007-09-20 Thread Matthias Wessendorf
On 9/20/07, Adam Winer [EMAIL PROTECTED] wrote: OK, so looks like the issue is that for this submit, we have: var params = new Object(); params[src] = src; params['source'] = src; submitForm(frm,0,params); We set params['source'] = src; to handle Trinidad

Re: [Trinidad] - [IE] funny issue with form and defaultCommand

2007-09-20 Thread Matthias Wessendorf
ok, did the clean-up On 9/20/07, Matthias Wessendorf [EMAIL PROTECTED] wrote: On 9/20/07, Adam Winer [EMAIL PROTECTED] wrote: OK, so looks like the issue is that for this submit, we have: var params = new Object(); params[src] = src; params['source'] = src;

Re: [Trinidad] - [IE] funny issue with form and defaultCommand

2007-09-20 Thread Matthias Wessendorf
created https://issues.apache.org/jira/browse/TRINIDAD-727 applied the fix to trunk On 9/20/07, Matthias Wessendorf [EMAIL PROTECTED] wrote: On 9/20/07, Adam Winer [EMAIL PROTECTED] wrote: OK, so looks like the issue is that for this submit, we have: var params = new Object();