Skip to main content
A newer version of this page is available. .
Tab

DialogViewModelBase.SetDataItemsFor<TViewModel, TField>(Expression<Func<TViewModel, TField>>, DialogViewModelBase.PopulateDataItemsMethod<TField>) Method

Specifies data for data items.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

public void SetDataItemsFor<TViewModel, TField>(
    Expression<Func<TViewModel, TField>> getter,
    DialogViewModelBase.PopulateDataItemsMethod<TField> populateDataItemsMethod
)

Parameters

Name Type Description
getter Expression<Func<TViewModel, TField>>

The expression that identifies the field ID.

populateDataItemsMethod DialogViewModelBase.PopulateDataItemsMethod<TField>

A delegate method.

Type Parameters

Name Description
TViewModel

The type of the view model.

TField

The type of the field.

See Also