Suoranta.WebApp.Types Namespace
Suoranta.WebApp - Developer API

DocEvent Enumeration

Enumerates document load events to which JavaScript statements can be attached.

Namespace:  Suoranta.WebApp.View.JS
Assembly:  Suoranta.WebApp (in Suoranta.WebApp.dll)

Syntax


[FlagsAttribute]
[DefaultValueAttribute]
public enum DocEvent

Members


Member nameDescription
JQueryDocReadyExecuted through JQuery $(document).ready(). Run once the page DOM is ready for JavaScript code to execute.
KendoSyncReadyExecuted through kendo.syncReady()
WindowLoadExecuted through $(window).on("load"). Run once the entire page, including images and iframes, is ready.
KendoGridDialogEdit This is a special value for use when the associated view is row editor dialog of Kendo Grid. Statements are executed through $("#grid").data("kendoGrid").bind("edit").
Early