Custom Renderer Documentation

Tags: #<Tag:0x00007f8b290e2138>

The custom renderer documentation shows a custom renderer being defined with
function coverRenderer(instance, td, row, col, prop, value, cellProperties)

No where does it say whether row and col are physical row and col or visual row and col.
Which is it?

Thanks

Hi @handsontable6

The renderer is attached to the visual row. Here’s an example you can test https://jsfiddle.net/handsoncode/vmuogpjz/ [3] is the first row in data but I have added initial sorting where [1] is the first one in the columns and [1] is painted via renderer.

Thanks.