BoldDesk®Customer service software offering ticketing, live chat, and omnichannel support, starting at $49/mo. for 10 agents. Try it for free.
Hello Team,
I am sending request to server for fetching next 15 record to bind my multiselect, its working fine in 100% resolution mode, but once I change my resolution scale to 125%. My scroll event not executing , the scrollTop and OffsetHeight is not matching the scenario. I am using row template with multiple column
SCale & Layout
Code Snap
Visu
public onOpen(args) {
let start: number = 9;
let end: number = 14;
let listElement: HTMLElement = (this.dropdownObj as any).list;
listElement.addEventListener('scroll', () => {
if (listElement.scrollTop + listElement.offsetHeight +
listElement.parentElement.querySelector('.e-filter-parent').offsetHeight >= listElement.scrollHeight) {
let filterQuery = this.dropdownObj.query.clone();
this.data.executeQuery(filterQuery.range(start, end)).then((event: any) => {
start = end;
end += 5;
this.dropdownObj.addItem(event.result as { [key: string]: Object; }[]);
}).catch((e: Object) => {});
}
});
} |
Hello Ponmani,
Thanks for your kind update, your provided code working fine in 125% but somehow it create problem in normal case. Sometime it fire scroll event every but some time skipped not firing the scroll event.
Hi Berly,
Thanks for your kind update, we missed some code snipped. Now Your provided solution perfectly working.
Thanks again for your quick support and Help