How to refresh table
How to refresh table
gman0104
Posts: 7Questions: 3Answers: 0
How can i simply refresh a table using JavaScript ?
Thanks
This discussion has been closed.
Answers
Assuming you are using
ajax
you can use theajax.reload()
API. If your data source is different then please post your Datatables init code and describe how you initially populate the table.Kevin
I'm using Microsoft power apps portal and i build my table up using HTML that is populated by looping through a FetchXML Query result set. e.g
for items in result set
<td>
G
Try using
destroy()
before fetching and repopulating the HTML table. Once the reloaded table is built then reinitialize your Datatable.Kevin