ASPxClientTreeListBatchEditStartEditingEventArgs.focusedColumn Property
In This Article
Gets the column to which the edited cell belongs.
#Declaration
TypeScript
focusedColumn: ASPxClientTreeListColumn
#Property Value
Type | Description |
---|---|
ASPx |
An ASPx |
#Remarks
<dx:ASPxTreeList ID="treeList" >
<ClientSideEvents BatchEditStartEditing="OnBatchEditStartEditing" />
</dx:ASPxTreeList>
var fieldName;
function OnBatchEditStartEditing(s, e) {
fieldName = e.focusedColumn.fieldName;
//...
}
See Also