Window Control

Window control is about how you control the content on the screen. The framework provides various elements which we will show you below.

Warning and error messages

The framework provides standard ways of diaplaying warning and error messages. This is done via the appropriate methods:

getWindowControl().setInfo()
getWindowControl().setWarning()
getWindowControl().setError()

$r.render("guidemo.control.info")  $r.render("guidemo.control.warn")  $r.render("guidemo.control.error")

Push and Pop windows

The framework allows to push and pop content to the main window. This enables a workflow to take the entire screen real estate if necessary, e.g. a workflow that wants to prevent the user from clicking any other link by simply not showing them.

$r.render("guidemo.control.push")