JavaScript Reference/Event Handlers Reference/onErrorUpdate
Содержание
"onErrorUpdate" Example
<html>
<head>
<title>Recordset Events</title>
<script for="birth" event="onerrorupdate">
alert("Error Updating");
</script>
</head>
<body>
<object classid="clsid:333C7BC4-460F-11D0-BC04-0080C7055A83" id="myData">
<param name="DataURL" value="myfile.csv">
<param name="UseHeader" value="True">
<param name="TextQualifier" value=""">
</object>
<table>
<tr>
<td>First Name</td>
<td><input id=firstname type=text datasrc=#myData datafld=firstname></td>
</tr>
<tr>
<td>Last Name</td>
<td><input id=lastname type=text datasrc=#myData datafld=lastname></td>
</tr>
</table>
<table id=myTable datasrc=#myData>
<thead>
<tr style="font-weight:bold">
<td>First</td>
<td>Last</td>
</tr>
</thead>
<tbody>
<tr id="tableList">
<td><span datafld="firstname"></span></td>
<td><span datafld="lastname"></span></td>
</tr>
</tbody>
</table>
</body>
</html>
<!-- myfile.csv -->
<!--
firstname:string,lastname:string
Joe,Yin
Jason,Lee
Tony,Zhang
-->
"onErrorUpdate" is applied to
+----------------+--------------------------------------------------------------+
| Applied_To |<a> <bdo> |
| |<button> <custom> |
| |<div> <frame> |
| |<iframe> <img> |
| |<inputtype="checkbox"> <input type="hidden"> |
| |<input type="password"> <inputtype="radio"> |
| |<input type="text"> <label> |
| |<legend> <map> |
| |<marquee> <object> |
| |<rt> <ruby> |
| |<select> <span> |
| |<textarea> |
+----------------+--------------------------------------------------------------+
"onErrorUpdate" Properties
+----------------+--------------------------------------------------------------+
| Properties |altKey altLeft |
| |cancelBubble ctrlLeft |
| |shiftLeft srcElement |
| |type |
+----------------+--------------------------------------------------------------+
"onErrorUpdate" Syntax and Note
Note:
This event fires if an error occurs while updating data in a databound object.