JavaScript Reference/Event Handlers Reference/onDatasetChange

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

"onDatasetChange" Example

   <source lang="javascript">
   

<html> <head> <title>Recordset Events</title> <script for="myData" event="ondatasetchanged">

   alert("data set 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>
   
  


"onDatasetChange" is applied to

   <source lang="javascript">

+----------------+--------------------------------------------------------------+ | Applied_To |<applet> <object> | | |<xml> | +----------------+--------------------------------------------------------------+

     </source>
   
  


"onDatasetChange" Properties

   <source lang="javascript">

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

     </source>
   
  


"onDatasetChange" Syntax and Note

   <source lang="javascript">

Note:

This event fires when a databound object changed. The datasrc and datafld attributes must be set for the element to which the onDataAvailable event handler applies. The value of the datasrc attribute must reference an object in the page.

Syntax:


     </source>