row.add without going back to 1st page?
row.add without going back to 1st page?
edb1418
Posts: 4Questions: 2Answers: 0
Is there any way or setting to add a row to an existing table, redraw, and not lose the page you're currently on? For example, if I'm looking at the table, and I'm on page 3 of it, and an event comes in that adds a row and redraws it... the table bumps me back to page 1.
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
You will want to use
.draw(false)
. This is in thedraw
docs.Kevin
That worked perfectly... thanks, Kevin! I overlooked that.