DxGridListEditor.FocusedObject Property
Returns the focused object.
Namespace: DevExpress.ExpressApp.Blazor.Editors
Assembly: DevExpress.ExpressApp.Blazor.v24.1.dll
NuGet Package: DevExpress.ExpressApp.Blazor
Declaration
Property Value
Type | Description |
---|---|
Object | The focused object. |
Remarks
The FocusedObject
property has a value in the following cases:
- A user uses the new item row to create a new object. The
FocusedObject
property returns this new object. - A user selects an object in the grid. The
FocusedObject
property returns the selected object.
In other cases, the FocusedObject
property returns null
. For example, this happens if a user selected multiple objects or no object is selected.
The DxGridListEditor
does not allow you to change the focused object in ListViewOnly
mode. The FocusedObject
property has a setter method, but this method calls the ListEditor.FocusedObject
virtual property setter that has no effect.
See Also