Hello,
I need to add some calculated columns in a virtual mode scenario. First I followed the instructions described here. But it did not work in Chrome, neither in IE11. I discovered, that during virtual scroll, the records
array was not indexed from 0, but from actual index of the record, from example from 1110 to 1125. So I had to use Object.keys
to be able to traverse the array. This is workig just fine in Chome and IE11, but the feature is supported only from IE9 upwards.
I have no IE8, but when switching working mode of IE11 back to IE8, I realized, that the indexing is from 0 again. So I added both approaches in may code, hoping that it will solve the issue.
Now, my problem: in IE8 (IE11 swithced back to IE8 working mode), even if I return the records
array as it is passed to the method, the grid is not populated at all.
What can I do?