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?