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.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

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

link|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 at 19:07
feedback

Your Answer

 
or
required, but never shown

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