https://bugzilla.novell.com/show_bug.cgi?id=339426#c5





--- Comment #5 from Juraj Skripsky <[EMAIL PROTECTED]>  2007-11-06 05:47:04 MST 
---
The problem with DefaultButton in Mono is that the "click()" method for
<a/>-Elements is not defined, but it is used in WebForm_FireDefaultButton:

webForm.WebForm_FireDefaultButton = function (event, target)
{
  ...

  if (defaultButton && typeof(defaultButton.click) != "undefined") {
    defaultButton.click();
    event.cancelBubble = true;
    return false;
  }
  return true;
}

I'll try to find an alternate way of "executing" an <a/>-based link.


-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
_______________________________________________
mono-bugs maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-bugs

Reply via email to