I want to add a datatable then remove it, add it again and parse a new info. When i add it (and parse) first time the datatable works well, but the other times it can’t parse a data. ( http://webix.com/snippet/9f48921b Just “delete-add-parse” several times) Such behavior surprised me when i deleting/adding/parsing forms with datatables, redrawing single form with new elements, deleting/adding/parsing datatable only as it’s in example. Is there any way to parse info when we are remove and add existing datatables?
Check the update snippet
http://webix.com/snippet/a67cdb15
In the original snippet, you have used the same object for initial and second initialization. As result some settings leaked from one grid to another, which caused the issue.
You can use webix.copy or just return the grid’s config from a custom function, so it will be a new object each time.