DialogMessagesSettingsBuilder

Methods

Close(System.String)

The title of the close button.

Parameters

value - System.String

The value for Close

RETURNS

Returns the current DialogMessagesSettingsBuilder instance.

Example

Razor
 
            @(Html.Kendo().Dialog()
                 .Name("Dialog")
                 .Visible(true)
                 .Content("Dialog content")
                 .Messages(messages => messages.Close("Close dialog"))
            )
             

PromptInput(System.String)

The title of the prompt input.

Parameters

value - System.String

The value for PromptInput

RETURNS

Returns the current DialogMessagesSettingsBuilder instance.

Example

Razor
 
            @(Html.Kendo().Dialog()
                 .Name("Dialog")
                 .Visible(true)
                 .Content("Dialog content")
                 .Messages(messages => messages.PromptInput("Prompt input"))
            )