datatable adjustRowHeight works of first 999 rows only

I have a rather big data set used in my datatable and I need to have a row height based on cell content.
I use it the following way:

...
on: {
	onAfterLoad: function(){
		webix.delay(function() {
            this.adjustRowHeight();
            this.render();
        }, this);
	}
}
...

And this works perfectly but only on first 999 rows and all the 999+ rows are high despite of their cells’ content. How can this be fixed?

Hi @orange ,

I have tested the issue, but everything looks fine
Could you, please, send a snippet where I can see the problem?

@Nastja looks like it works wrong only when used in Vue app and when this.adjustRowHeight is called without column id. Now I use it with column id and it seems to be correct.