Skip to content

Lookups Refresh Lookups on TypeScript

Victor Tomaili edited this page May 3, 2021 · 1 revision

Splitted the cheat sheet of Wesley Huang into more specific parts for easier finding the topics.


Refresh Lookups on TypeScript

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');
}

Clone this wiki locally