BBjAppServer::getManageBrowserHistory

Description

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

Syntax

Return Value

Method

boolean

getManageBrowserHistory()

Parameters

None.

Return Value

Returns a boolean indicating whether BUI will manage 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 ' BBjAppServer::getMangeBrowserHistory

admin! = bbjapi().getAdmin("admin","admin123")
appServer! = admin!.getWebAppServer()
print "getManageBrowserHistory: ",
print appServer!.getManageBrowserHistory()

See Also

BBjAPI

BBjAppServer

BBjAppServer::setManageBrowserHistory()

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