CodeCharge StudioThis event occurs when the user clicks the left mouse button on the object.
Possible applications: Handling button clicking. Executing custom button actions.
<script language="JavaScript">
function page_NewRecord1_Delete_OnClick() {
return confirm('Delete record?');
}
function bind_events() {
check_and_bind('document.NewRecord1.Delete','onclick', page_NewRecord1_Delete_OnClick);
forms_onload();
}
window.onload = bind_events;
</script>