@@ -483,10 +483,10 @@ export class DxTreeListComponent<TRowData = any, TKey = any> extends DxComponent
483
483
484
484
*/
485
485
@Input ( )
486
- get editing ( ) : { allowAdding ?: boolean | ( ( options : { component : dxTreeList , row : dxTreeListRowObject } ) => boolean ) , allowDeleting ?: boolean | ( ( options : { component : dxTreeList , row : dxTreeListRowObject } ) => boolean ) , allowUpdating ?: boolean | ( ( options : { component : dxTreeList , row : dxTreeListRowObject } ) => boolean ) , changes ?: Array < DataChange > , confirmDelete ?: boolean , editColumnName ?: string , editRowKey ?: any , form ?: dxFormOptions , mode ?: GridsEditMode , popup ?: dxPopupOptions < any > , refreshMode ?: GridsEditRefreshMode , selectTextOnEditStart ?: boolean , startEditAction ?: StartEditAction , texts ?: { addRow ?: string , addRowToNode ?: string , cancelAllChanges ?: string , cancelRowChanges ?: string , confirmDeleteMessage ?: string , confirmDeleteTitle ?: string , deleteRow ?: string , editRow ?: string , saveAllChanges ?: string , saveRowChanges ?: string , undeleteRow ?: string , validationCancelChanges ?: string } , useIcons ?: boolean } {
486
+ get editing ( ) : { allowAdding ?: boolean | ( ( options : any | { component : dxTreeList , row : dxTreeListRowObject } ) => boolean ) , allowDeleting ?: boolean | ( ( options : any | { component : dxTreeList , row : dxTreeListRowObject } ) => boolean ) , allowUpdating ?: boolean | ( ( options : any | { component : dxTreeList , row : dxTreeListRowObject } ) => boolean ) , changes ?: Array < DataChange > , confirmDelete ?: boolean , editColumnName ?: string , editRowKey ?: any , form ?: dxFormOptions , mode ?: GridsEditMode , popup ?: dxPopupOptions < any > , refreshMode ?: GridsEditRefreshMode , selectTextOnEditStart ?: boolean , startEditAction ?: StartEditAction , texts ?: { addRow ?: string , addRowToNode ?: string , cancelAllChanges ?: string , cancelRowChanges ?: string , confirmDeleteMessage ?: string , confirmDeleteTitle ?: string , deleteRow ?: string , editRow ?: string , saveAllChanges ?: string , saveRowChanges ?: string , undeleteRow ?: string , validationCancelChanges ?: string } , useIcons ?: boolean } {
487
487
return this . _getOption ( 'editing' ) ;
488
488
}
489
- set editing ( value : { allowAdding ?: boolean | ( ( options : { component : dxTreeList , row : dxTreeListRowObject } ) => boolean ) , allowDeleting ?: boolean | ( ( options : { component : dxTreeList , row : dxTreeListRowObject } ) => boolean ) , allowUpdating ?: boolean | ( ( options : { component : dxTreeList , row : dxTreeListRowObject } ) => boolean ) , changes ?: Array < DataChange > , confirmDelete ?: boolean , editColumnName ?: string , editRowKey ?: any , form ?: dxFormOptions , mode ?: GridsEditMode , popup ?: dxPopupOptions < any > , refreshMode ?: GridsEditRefreshMode , selectTextOnEditStart ?: boolean , startEditAction ?: StartEditAction , texts ?: { addRow ?: string , addRowToNode ?: string , cancelAllChanges ?: string , cancelRowChanges ?: string , confirmDeleteMessage ?: string , confirmDeleteTitle ?: string , deleteRow ?: string , editRow ?: string , saveAllChanges ?: string , saveRowChanges ?: string , undeleteRow ?: string , validationCancelChanges ?: string } , useIcons ?: boolean } ) {
489
+ set editing ( value : { allowAdding ?: boolean | ( ( options : any | { component : dxTreeList , row : dxTreeListRowObject } ) => boolean ) , allowDeleting ?: boolean | ( ( options : any | { component : dxTreeList , row : dxTreeListRowObject } ) => boolean ) , allowUpdating ?: boolean | ( ( options : any | { component : dxTreeList , row : dxTreeListRowObject } ) => boolean ) , changes ?: Array < DataChange > , confirmDelete ?: boolean , editColumnName ?: string , editRowKey ?: any , form ?: dxFormOptions , mode ?: GridsEditMode , popup ?: dxPopupOptions < any > , refreshMode ?: GridsEditRefreshMode , selectTextOnEditStart ?: boolean , startEditAction ?: StartEditAction , texts ?: { addRow ?: string , addRowToNode ?: string , cancelAllChanges ?: string , cancelRowChanges ?: string , confirmDeleteMessage ?: string , confirmDeleteTitle ?: string , deleteRow ?: string , editRow ?: string , saveAllChanges ?: string , saveRowChanges ?: string , undeleteRow ?: string , validationCancelChanges ?: string } , useIcons ?: boolean } ) {
490
490
this . _setOption ( 'editing' , value ) ;
491
491
}
492
492
@@ -1659,7 +1659,7 @@ export class DxTreeListComponent<TRowData = any, TKey = any> extends DxComponent
1659
1659
* This member supports the internal infrastructure and is not intended to be used directly from your code.
1660
1660
1661
1661
*/
1662
- @Output ( ) editingChange : EventEmitter < { allowAdding ?: boolean | ( ( options : { component : dxTreeList , row : dxTreeListRowObject } ) => boolean ) , allowDeleting ?: boolean | ( ( options : { component : dxTreeList , row : dxTreeListRowObject } ) => boolean ) , allowUpdating ?: boolean | ( ( options : { component : dxTreeList , row : dxTreeListRowObject } ) => boolean ) , changes ?: Array < DataChange > , confirmDelete ?: boolean , editColumnName ?: string , editRowKey ?: any , form ?: dxFormOptions , mode ?: GridsEditMode , popup ?: dxPopupOptions < any > , refreshMode ?: GridsEditRefreshMode , selectTextOnEditStart ?: boolean , startEditAction ?: StartEditAction , texts ?: { addRow ?: string , addRowToNode ?: string , cancelAllChanges ?: string , cancelRowChanges ?: string , confirmDeleteMessage ?: string , confirmDeleteTitle ?: string , deleteRow ?: string , editRow ?: string , saveAllChanges ?: string , saveRowChanges ?: string , undeleteRow ?: string , validationCancelChanges ?: string } , useIcons ?: boolean } > ;
1662
+ @Output ( ) editingChange : EventEmitter < { allowAdding ?: boolean | ( ( options : any | { component : dxTreeList , row : dxTreeListRowObject } ) => boolean ) , allowDeleting ?: boolean | ( ( options : any | { component : dxTreeList , row : dxTreeListRowObject } ) => boolean ) , allowUpdating ?: boolean | ( ( options : any | { component : dxTreeList , row : dxTreeListRowObject } ) => boolean ) , changes ?: Array < DataChange > , confirmDelete ?: boolean , editColumnName ?: string , editRowKey ?: any , form ?: dxFormOptions , mode ?: GridsEditMode , popup ?: dxPopupOptions < any > , refreshMode ?: GridsEditRefreshMode , selectTextOnEditStart ?: boolean , startEditAction ?: StartEditAction , texts ?: { addRow ?: string , addRowToNode ?: string , cancelAllChanges ?: string , cancelRowChanges ?: string , confirmDeleteMessage ?: string , confirmDeleteTitle ?: string , deleteRow ?: string , editRow ?: string , saveAllChanges ?: string , saveRowChanges ?: string , undeleteRow ?: string , validationCancelChanges ?: string } , useIcons ?: boolean } > ;
1663
1663
1664
1664
/**
1665
1665
0 commit comments