Skip to main content

ASPxClientTreeListBatchEditStartEditingEventArgs.focusedColumn Property

Gets the column to which the edited cell belongs.

Declaration

focusedColumn: ASPxClientTreeListColumn

Property Value

Type Description
ASPxClientTreeListColumn

An ASPxClientTreeListColumn object that is the focused tree list column.

Remarks

<dx:ASPxTreeList ID="treeList" >
  <ClientSideEvents BatchEditStartEditing="OnBatchEditStartEditing" />
</dx:ASPxTreeList>
var fieldName;
function OnBatchEditStartEditing(s, e) {
    fieldName = e.focusedColumn.fieldName;
    //...
}
See Also