Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have come to know that from IE 5, there is a strange behaviour that when escape character is pressed twice, all the form fields are reset automatically. This is not occuring in Mozilla. So as a remedy i have put a simple javascript that will alert user when values are getting reset. Below is the code for it.

<html>
<body>
<form action="Enroll" method="post" onreset="return confirm('Really reset all form  fields?')">
<table>
<tr>
<td>Name </td>
<td><input type="text" id="name"/></td>
<td>Id </td>
<td><input type="text" id="id"/></td>
</tr>
<tr>
<td><input type="submit" value="Submit"></td>
</tr>
</table>
</form>
</body>
</html>

Now, please help me how i can acheive this is Orbeon Xforms as this is happening in Orbeon xforms also.

share|improve this question

1 Answer

up vote 3 down vote accepted

This used to be a bug, and it has been fixed on 2012-04-20, and the fix is available in nightly builds and releases made after that date.

share|improve this answer
thanks for tracking this issue. – Kaipa M Sarma Aug 29 '11 at 8:27
This issue is now fixed, and I updated the answer accordingly. – avernet Apr 20 '12 at 19:07
Fixed my issue to in a YUI SimpleDialog, thanks! – Michael-O Feb 21 at 15:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.