Skip to main content

reload()

Last updated 10/05/2023

Example One

The reload() is a function on the Five object and is used to reload the data on the current form.


Reload the data on the form
function formReload(five: Five, context: any, result: FiveError) : FiveError {
five.reload();
return five.success(result);
}