DialogViewModelBase.SetDataItemsFor<TViewModel, TField>(Expression<Func<TViewModel, TField>>, DialogViewModelBase.PopulateDataItemsMethod<TField>) Method
Specifies data for data items.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.1.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