can't “refresh” filamentgroup tablesaw responsive table after adding new rows

穿精又带淫゛_ 提交于 2019-12-01 20:22:23

So I was kindly pointed in the right direction on GitHub by https://github.com/zachleat.

I had to slightly change the line of code that refreshes the table after a user has clicked to move to the next paginated page.

$('#mytable').table().data("table").refresh()

Just because the tbody>tr>td is loaded before the refresh() called. It's accidentaly right. the refresh func doesn't call the snip $cells.wrapInner( "" ); $cells.prepend( "" + html + "" );"

You can change the source code. use the init event instand of refresh event.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!