Version

InitializeToolbar Property

Returns or sets a string of text that specifies the name of the JavaScript function to be called when the internal document object model is being initialized on the client.
Syntax
'Declaration
 
Public Property InitializeToolbar As String
public string InitializeToolbar {get; set;}
Remarks

The name of the JavaScript function can be user defined or native. For example, to specify that the native function alert should be called, this property could be set to "alert('hello')." To specify that a user-defined function, myFunction, should be called, this property would be set to "myFunction."

A user-defined function must be defined either inline or in a linked JavaScript (.JS) file, above where the UltraWebToolbar control is defined on the page, and can accept the following parameters:

parameter1

Object. The CSOM toolbar object calling the function.

parameter2

Object. The CSOM event object.

The parameters above are optional and can be named as desired.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also