File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
projects/igniteui-angular/src/lib/grids Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -434,16 +434,17 @@ export class IgxGridNavigationService {
434434 this . grid . unpinnedColumns [ this . grid . unpinnedColumns . length - 1 ] . visibleIndex === visibleColumnIndex ) {
435435 return ;
436436 }
437- if ( nextIsDetailRow && isLastColumn ) {
438- this . navigateDown ( currentRowEl , { row : rowIndex , column : visibleColumnIndex } ) ;
439- return ;
440- }
441437
442438 if ( this . isRowInEditMode ( rowIndex ) ) {
443439 this . moveNextEditable ( rowIndex , visibleColumnIndex ) ;
444440 return ;
445441 }
446442
443+ if ( nextIsDetailRow && isLastColumn ) {
444+ this . navigateDown ( currentRowEl , { row : rowIndex , column : visibleColumnIndex } ) ;
445+ return ;
446+ }
447+
447448 if ( isLastColumn ) {
448449 const rowEl = this . grid . rowList . find ( row => row . index === rowIndex + 1 ) ?
449450 this . grid . rowList . find ( row => row . index === rowIndex + 1 ) :
You can’t perform that action at this time.
0 commit comments