Reload datatable after submit from modal form

hi, Webix team.

this is my example code

https://snippet.webix.com/avykhc9a

How do I reload the table after clicking submit button ??

if you want static load ,you can use parse() function in datatable

But , if you want loading data dynamically datatable after POST request, you can use “clearAll()” function to clear all data, and load data again with load() function and targeting your GET request link.

check this snippet:
https://snippet.webix.com/mwq4j7mk

thx @vickypaulantono , that’s what I want