Hot.render()

Tags: #<Tag:0x00007efc6b547d88>

When is hot.render() required? Does

hot.setDataAtCell(0, 0, 'new value');

or

hot.setDataAtRowProp()

require a render?

Is there a list that shows what calls require a render?

Thanks!

Hi @sports.racer

Both of those methods automatically rerender the table (another render() is unnecessary)

  1. setDataAtCell example https://jsfiddle.net/kjwxqzL4/1/
  2. setDataAtRowProp example https://jsfiddle.net/kjwxqzL4/2/

Thank you!