Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

RadioGroupBuilder.DataSource(IEnumerable, String[]) Method

Binds a RadioGroup control to a collection: Array, List, or IEnumerable.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

#Declaration

C#
public RadioGroupBuilder DataSource(
    IEnumerable data,
    params string[] key
)

#Parameters

Name Type Description
data IEnumerable

A collection that supplies data for the control.

key String[]

An array that contains one or more key field names.

#Returns

Type Description
RadioGroupBuilder

A reference to this instance after the method is called.

#Remarks

This method is a shorthand version of the DataSourceFactory.Array() method. The following examples are equivalent:

@(Html.DevExtreme().RadioGroup()
    .DataSource(Model.MyCollection, "ID")
)
@(Html.DevExtreme().RadioGroup()
    .DataSource(ds => ds.Array()
        .Data(Model.MyCollection)
        .Key("ID")
    )
)

Refer to CLR Objects for more information.

See Also