Skip to main content

SortableBuilder.Content(String) Method

Specifies content for a Sortable control.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public SortableBuilder Content(
    string content
)

Parameters

Name Type Description
content String

A string that specifies content.

Returns

Type Description
SortableBuilder

A reference to this instance after the method is called.

Remarks

Refer to Use Markup to Specify Content for more information.

@(Html.DevExtreme().Sortable()
    .Content("<p>Sortable content</p>")
)
See Also