Hello,
I’m trying to know when the scroll gets the bottom limit of the grid to make sure the user has ‘seen’ all rows in the grid. My approach is to get the scrollbar in the grid and get it’s instance to override the valuechanged event.
this.verticalScrollBar = $('#'+this.id).find("#verticalScrollBar" + this.id);
var vScrollInstance = $.data(this.verticalScrollBar[0], 'jqxScrollBar').instance;
vScrollInstance.valuechanged = function(event){
var currentValue = event.currentValue;
var previousValue = event.previousvalue;
console.log('currentValue', currentValue, 'previousValue',previousValue);
};
the problem is that the grid already defines the valuechanged for its scrollbars so doing this disables table scrolling.
My questions are, is there any other way to achieve my goal wich doesn’t need to override this method? Are you going to add any kind of scroll events to the grid itself in a near future?
Thank you very much