I have been trying this for more than a week but have not been able to achieve it in angular. Can someone please take a look into it?
onContainerScroll() never gets called, I was wondering how to do it using javascript, on scroll this element and on reaching bottom call API with next range?
<ngx-monaco-diff-editor id="diffeditor" [options]="diffOptions" [originalModel]="originalModel" #elm
[modifiedModel]="modifiedModel" (scroll)="onContainerScroll($event)">
</ngx-monaco-diff-editor>
@ViewChild('elm', { read: ElementRef }) elm: ElementRef;
ngAfterViewInit() {
console.log(this.elm.nativeElement) //return the ngx element
}
You want to get the reference to the
DiffEditorComponent
and thenYou will have to dig deeper, but this is a reasonable start to go forth.