onrowenter
Events Reference

onrowenter

Description

Fires to indicate that the current row has changed and new data values are available.

Remarks

This event only fires when the object is databound. This event applies only to objects that identify themselves as a data provider. This event will not bubble. Events that do not bubble can only be handled on the individual object that fired the event.

Applies To

APPLET, BODY, BUTTON, CAPTION, DIV, EMBED, HR, IMG, MAP, MARQUEE, OBJECT, SELECT, TABLE, TD, TEXTAREA, TR


onrowexit

Description

Fires just prior to the data source control changing the current row.

Remarks

This event only fires when the object is databound. This event applies only to objects that identify themselves as a data provider. This event will not bubble. Events that do not bubble can only be handled on the individual object that fired the event.

Applies To

APPLET, BODY, BUTTON, CAPTION, DIV, EMBED, HR, IMG, MAP, MARQUEE, OBJECT, SELECT, TABLE, TD, TEXTAREA, TR


onscroll

Description

Fires when the scroll box is repositioned.

Remarks

This notification event fires for the window object and all elements that scroll. This event cannot be canceled. This event will not bubble. Events that do not bubble can only be handled on the individual object that fired the event.

Applies To

BODY, DIV, FIELDSET, IMG, MARQUEE, SPAN, TEXTAREA, window


onselect

Description

Fires when the current selection changes.

Remarks

This event will fire as the mouse moves from character to character during a drag selection. This event will not bubble. Events that do not bubble can only be handled on the individual object that fired the event.

Applies To

INPUT, TEXTAREA

See Also

select


onselectstart

Description

Fires at the beginning of an element selection.

Remarks

This event will fire as the mouse starts the selection of one or more elements. The element at the beginning of the selection fires the event. This event can be canceled. This event will bubble. Events that bubble can be handled on any parent element of the object that fired the event.

Applies To

A, ACRONYM, ADDRESS, AREA, B, BIG, BLOCKQUOTE, BODY, BUTTON, CAPTION, CENTER, CITE, CODE, DD, DEL, DFN, DIR, DIV, DL, DT, EM, FONT, FORM, H1, H2, H3, H4, H5, H6, HR, I, IMG, INPUT, KBD, LABEL, LI, LISTING, MAP, MARQUEE, MENU, OBJECT, OL, OPTION, P, PLAINTEXT, PRE, Q, S, SAMP, SELECT, SMALL, SPAN, STRIKE, STRONG, SUB, SUP, TABLE, TBODY, TD, TEXTAREA, TFOOT, TH, THEAD, TR, TT, U, UL, VAR, XMP

See Also

select


onstart

Description

Fires at the beginning of every loop, and when a bounce cycle begins for alternate behavior.

Remarks

This event will not bubble. Events that do not bubble can only be handled on the individual object that fired the event.

Applies To

MARQUEE


onsubmit

Description

Fires when a form is about to be submitted.

Return Value

Returns TRUE or FALSE.

Remarks

The onsubmit event default action is to submit the form. This event can be overridden by returning FALSE in the event handler. The purpose of this is to allow the developer to do validation of the data on the client side and prevent invalid data from being submitted to the server. This event will not bubble. Events that do not bubble can only be handled on the individual object that fired the event.

Applies To

FORM


onunload

Description

Fires immediately prior to the page being unloaded.

Remarks

The onunload attribute of the BODY element sets an onunload event handler for the window. This event will not bubble. Events that do not bubble can only be handled on the individual object that fired the event.

Applies To

BODY, FRAMESET, window

© 1997 Microsoft Corporation. All rights reserved. Terms of Use.