Two questions.
1) How do you reload just one row? If I delete/insert the same row I get an animation even if I specify None.
2) How do you reload a row so the delegate method viewForRowBackgroundAtPath:(IGRowPath *)path is called again?
Hi Caylan,
You can't reload just one row. If you wanted to refresh the cell's content, you can always get a reference to the cell from the grid, and update the cell manually.
If you want to just refresh, call updateData on the grid. That will cause the grid to reload whats on the screen, but won't change selection or its scroll position.
-SteveZ