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

ASPxClientVerticalGridBatchEditEndEditingEventArgs.focusedRow Property

Gets the row to which the edited cell belongs.

Declaration

focusedRow: ASPxClientVerticalGridRow

Property Value

Type Description
ASPxClientVerticalGridRow

The row.

Remarks

<dx:ASPxVerticalGrid ID="verticalGrid" >
  <ClientSideEvents BatchEditEndEditing="OnBatchEditEndEditing" />
</dx:ASPxVerticalGrid> 
var fieldName;
function OnBatchEditEndEditing(s, e) {
    fieldName = e.focusedColumn.fieldName;
    //...
}
See Also