ankita20051997

Results 3 issues of ankita20051997

resetSelection() { this.selection = {}; this.selection.showPasteOption = false; this.selectedCell = []; } in this.selectedCell we have selected items so in reset function i put this.selectedCell = []; but now i'm...

Is there any solution to get context menu in the popup modal ? because in normal page context menu is appearing on right click but if we want inside popup...

Below is a duct tape and it works. 1. `@ViewChild(MultiSelectComponent, { static: true }) multiSelectComponent: MultiSelectComponent;` 2. ``` ngAfterViewInit( ) { this.multiSelectComponent.registerOnTouched(this.onCtrlBlur); } ``` 3. ``` onCtrlBlur( ) { const...