BBjApplication::getManageBrowserHistory

Description

In BBj 16.0 and higher, this method returns a boolean indicating whether this BUI will manage this app's browser history. The default value is false.

Syntax

Return Value

Method

boolean

getManageBrowserHistory()

Parameters

None.

Return Values

Returns a boolean indicating whether BUI will manage this app's browser history.

Remarks

BUI apps tend to be stateful; data can be lost if the user accidentally presses the browser 'back' button. When this mode is set, BUI manages browser history and the 'back' button.

Example

rem ' BBjApplication::getManageBrowserHistory

admin! = bbjapi().getAdmin("admin","admin123")
appServer! = admin!.getWebAppServer()
vector! = appServer!.getAllAppNames()
if (vector!.size()) then
    for i = 0 to vector!.size() - 1
        appName$ = vector!.get(i)
        app! = appServer!.getApplication(appName$)
        print appName$," getManageBrowserHistory: ",
        print app!.getManageBrowserHistory()
    next i
endif

See Also

BBjAPI

BBjAppConfig

BBjAppServer

BBjApplication

See the BBj Object Diagram for an illustration of the relationship between BBj Objects.