Gets or sets a name of the client side function that should be fired on client side after dialog is shown.

Namespace:  C1.Web.UI.Controls.C1Window
Assembly:  C1.Web.UI.Controls.2 (in C1.Web.UI.Controls.2.dll)

Syntax

C#
[JsonAttribute(true, true, "")]
[C1CategoryAttribute("Category.ClientSideEvents")]
[DefaultValueAttribute("")]
[EditorAttribute("C1.Web.UI.Design.UITypeEditors.C1ClientHandlerUITypeEditor, C1.Web.UI.Design.2", 
	typeof(UITypeEditor))]
[ClientSideHandlerArgsAttribute("sender, e")]
[LayoutAttribute(LayoutType.All)]
public string OnClientShown { get; set; }
Visual Basic
<JsonAttribute(True, True, "")> _
<C1CategoryAttribute("Category.ClientSideEvents")> _
<DefaultValueAttribute("")> _
<EditorAttribute("C1.Web.UI.Design.UITypeEditors.C1ClientHandlerUITypeEditor, C1.Web.UI.Design.2",  _
	GetType(UITypeEditor))> _
<ClientSideHandlerArgsAttribute("sender, e")> _
<LayoutAttribute(LayoutType.All)> _
Public Property OnClientShown As String
	Get
	Set

Remarks

There are two arguments that are passed to the function: sender: dialog object that fired the event. e: object that provides data for the event. See client side object model section in documentation for more details.

See Also