Lookups Refresh Lookups on TypeScript - serenity-is/Serenity GitHub Wiki
Splitted the cheat sheet of Wesley Huang into more specific parts for easier finding the topics.
When you do edits on typescript, you may need to refresh the lookups on the client Side. Just use: Q.reloadLookup("<LoookupKey>")
Retrieved from CustomerDialog.ts
onSaveSuccess(response) {
super.onSaveSuccess(response);
Q.reloadLookup('Northwind.Customer');
}