aspnetmvc-devexpress-dot-web-dot-mvc-f21fc921.md
A delegate method that enables you to implement retrieval of an item by its value.
Namespace : DevExpress.Web.Mvc
Assembly : DevExpress.Web.Mvc5.v25.2.dll
NuGet Package : DevExpress.Web.Mvc5
public delegate object ItemRequestedByValueMethod(
ListEditItemRequestedByValueEventArgs args
);
Public Delegate Function ItemRequestedByValueMethod(
args As ListEditItemRequestedByValueEventArgs
) As Object
| Name | Type | Description |
|---|---|---|
| args | ListEditItemRequestedByValueEventArgs |
A ListEditItemRequestedByValueEventArgs object that contains the required data.
|
| Type |
|---|
| Object |
Use the ItemRequestedByValueMethod delegate to implement retrieval of an item by its value. It can be accessed by the argument ListEditItemRequestedByValueEventArgs.Value property.
Note that the ItemRequestedByValueMethod delegate should return a collection containing a single item with the specified value.
See Also