File tree 2 files changed +9
-0
lines changed
projects/igniteui-angular/src/lib/select
2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change 30
30
31
31
<!-- Version 3 -->
32
32
< div igxToggle class ="igx-drop-down__list--select "
33
+ (mousedown) ="mousedownHandler($event); "
33
34
(onOpening) ="onToggleOpening($event) " (onOpened) ="onToggleOpened() "
34
35
(onClosing) ="onToggleClosing($event) " (onClosed) ="onToggleClosed() ">
35
36
< ng-content *ngTemplateOutlet ="headerTemplate ">
Original file line number Diff line number Diff line change @@ -453,5 +453,13 @@ export class IgxSelectComponent extends IgxDropDownComponent implements IgxSelec
453
453
this . _statusChanges$ . unsubscribe ( ) ;
454
454
}
455
455
}
456
+
457
+ /**
458
+ * @hidden @internal
459
+ * Prevent input blur - closing the items container on Header/Footer Template click.
460
+ */
461
+ public mousedownHandler ( event ) {
462
+ event . preventDefault ( ) ;
463
+ }
456
464
}
457
465
You can’t perform that action at this time.
0 commit comments