refresh
Reloads the content of a single control (like combobox or grid) or of all such controls in a Gebra Suite application.
Signature
refresh(controlId, visibleOnly = true)Parameters
Example Usages
//refresh all visible controls
app.refresh();
//refresh all controls, even invisible ones
app.refresh(null, false);
//refresh a specific visible control
app.refresh("myKeyControl");
//refresh a specific invisible control
app.refresh("myKeyControl", false);Return Values
Last updated