Skip to main content

LoadPanelBuilder.Message(String) Method

Specifies the text displayed in the load panel. Ignored in the Material Design theme. Mirrors the client-side message option.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public LoadPanelBuilder Message(
    string value
)

Parameters

Name Type Description
value String

The option value.

Returns

Type Description
LoadPanelBuilder

A reference to this instance after the method is called.

Remarks

Use the following notation to set the option’s value:

@(Html.DevExtreme().LoadPanel()
    .Message("My message")
)
See Also