DialogMessagesSettingsBuilder
Methods
Close(System.String)
The title of the close button.
Parameters
value - System.String
The value that configures the close.
Example
@(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 that configures the promptinput.
Example
@(Html.Kendo().Dialog()
.Name("Dialog")
.Visible(true)
.Content("Dialog content")
.Messages(messages => messages.PromptInput("Prompt input"))
)