OVRSFLAUTOGUI Function

RAMP-TS

OVRSFLAUTOGUI Function

Allows you to turn the Axes system flag Recognise subfiles as tables on and off on a screen by screen basis.

You need to be on aXes 2.1 or later to use this scripting function.

 

Syntax

OVRSFLAUTOGUI(sScreenName, bOvr) 

Parameters

sScreenName

Required. An string that specifies the name of the screen.

bOvr

Optional. Boolean.

true will cause the subfiles to be recognised as.
false  will turn the setting off
For any other value including no value, the behaviour will be according to the current subfile AutoGUI setting.

 

Remarks

The only valid place to put a call to this API is in the Navigate_TO section of the Login script for example:

vHandle_NAVIGATETO: function(sToForm, oPreviousForm)
{
     var bReturn = true;
     HIDE_CURRENT_FORM();
     SETBUSY(true);
     OVRSFLAUTOGUI("Employee_Skills", false);

     etc