JavaScript Reference/Event Handlers Reference/onAfterUpdate

Материал из Web эксперт
Перейти к: навигация, поиск

"onAfterUpdate" Example

   <source lang="javascript">
   

<html> <head> <title>Recordset Events</title> <script for="firstname" event="onafterupdate">

   alert("Data has changed");

</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>

First Name <input id=firstname type=text datasrc=#myData datafld=firstname>
Last Name <input id=lastname type=text datasrc=#myData datafld=lastname>
<thead> </thead> <tbody> </tbody>
First Last

</body> </html>



     </source>
   
  


"onAfterUpdate" is applied to

   <source lang="javascript">

+----------------+--------------------------------------------------------------+ | Applied_To |<a> <applet> | | | <button> | | | <custom> |

| |
<frame> |

| |<frameset> <iframe> | | |<img> <input type="checkbox"> | | |<input type="hidden"> <inputtype="password"> | | |<input type="radio"> <input type="text"> | | |<label> <legend> | | |<map> <marquee> | | |<object> | | | <select> |

| | | | | | +----------------+--------------------------------------------------------------+ </source>

"onAfterUpdate" Properties

   <source lang="javascript">

+----------------+--------------------------------------------------------------+ | Properties |altKey altLeft | | |cancelBubble ctrlLeft | | |shiftLeft srcElement | | |type | +----------------+--------------------------------------------------------------+

     </source>
   
  


"onAfterUpdate" Syntax and Note

   <source lang="javascript">

Note:

This event fires when a databound object"s data has been successfully updated. This event fires only if the onbeforeupdate event has already fired. The datasrc and datafld attributes must be set, and the value of the datasrc attribute must reference an object in the page.


</source>
<textarea> | | |