onLangChange(langObj) {
}
The functions I want to reinitialize data table with new language JSON object without loading the page. is possible to re-render the data table without losing filler and search attributes
onLangChange(langObj) {
}
The functions I want to reinitialize data table with new language JSON object without loading the page. is possible to re-render the data table without losing filler and search attributes
Copyright © 2021 Jogjafile Inc.
Angular is using the MVVM-Pattern to reactivate views without loading them again. They just rerendering the already shown items.
Thats all. The MVVM-Pattern is doing the rest. As long as your
oldLangObjis bind to the table. And of course, this should be in the .TS-file next to your .HTML-File for your table.For more information check out this link