Version 8.3.3
 —  Layout Elements  —

STATUSBAR/STATUSBARSSW

This document covers the following topics:


STATUSBAR

Normally, the status bar is located at the bottom of a page. It is a grey area (if using the standard style sheet) where status information can be seen. The status information is derived dynamically from properties of the adapter class. The information consists of three parts:

Adapter Implementation Details

The adapter class has to support properties which provide data that are passed to the status bar. The get methods for the default property names are:

public String getMessageType() ...
public String getMessageShortText() ...
public String getMessageLongText() ...

They are already implemented by the adapter class: normally you do not have to overwrite these methods.

There is a method outputMessage(String type, String shortText, String longText) that can be used from the adapter class inside your adapter implementation.

Example: In the "Hello World!" application, you want to display an error message if the user clicks the Say Hello! button and has not yet entered a name. The sayHello() method looks as follows:

public void sayHello()
{
    if (m_name == null || m_name.trim().length()== 0)
    {
       this.outputMessage("E","Please enter a user name !"," ... space for a longer text ...");
       return;
    }
    m_result = "Hello World, " + m_name + "!";
}

The method outputMessage(String type, String shortText) does not need a long message text. In this case, the sayHello() method looks as follows:

public void sayHello()
{
    if (m_name == null || m_name.trim().length()== 0)
    {
       this.outputMessage("E","Please enter a user name !");
       return;
    }
    m_result = "Hello World, " + m_name + "!";
}

The screen including the error message looks as follows:

Error message

Three message types are available:

There are corresponding constants in the Adapter class:

Top of page

STATUSBARSSW

The STATUSBARSSW control is an extension to the normal STATUSBAR control. "SSW" in the control name stands for "subsession-wide".

The STATUSBARSSW control allows you to output messages in the statusbar from any subsession, even from a SUBCISPAGE2 control. You place the STATUSBARSSW control once, and you can call from anywhere.

Example

In this example, the SUBCISPAGE2 control sends an outputMessage() to the STATUSBARSSW control of the parent page.

Statusbarssw

The XML layout definition is:

<pagebody takefullheight="true">
  <itr takefullwidth="true" height="100%">
   <subcispage2 subcispageprop="subcisPageInfo" width="100%" height="100%">
   </subcispage2>
  </itr>
</pagebody>
<statusbarssw>
</statusbarssw>

There is no need for any special coding in order to use the STATUSBARSSW control. Both controls use the same server API.

public void onShowMessage()
{
  outputMessage(MT_SUCCESS, m_message);
}

Advantage of the STATUSBARSSW Control

The following coding would be necessary with a normal STATUSBAR control:

public void onShowMessage()  // old version
{
  // find the 'Outer Adapter'
  StatusbarSSWAdapter outer =
            (StatusbarSSWAdapter)findAdapter(StatusbarSSWAdapter.class);
  // output the message
  outer.outputMessage(MT_SUCCESS, m_message);
  // and refresh the parent page.
  refreshParent();
}

This example shows only the code which is required for a page which is nested once. A lot of additional code would be required for further nested pages. When using the STATUSBARSSW control, you need not worry about nesting.

When to use the STATUSBARSSW Control

If you have many pages (maybe with several included SUBCISPAGE2 controls) and you want to have a single status bar for all of your messages, you use the STAUSBARSSW control.

If you have only a few pages (for example, 2 pages in a frameset) and you want to output a different message for each page, you have to use the normal STATUSBAR control. For example:

Status bars in frame

Top of page

STATUSBAR Properties

Basic
typeprop

Name of the adapter property holding the information about the type of the status message. The type defines the image that is rendered at the beginning of the message.

Currently there are 3 supported values that can be passed back from the property: E for error, W for warning, S for success.

The default property name is messageType provided by the Model-class, from which you derive your adapter class.

Please pay attention: changing this property means that you also have to override the "outputMessage(...)" methods inside your adapter accordingly.

Optional  
shorttextprop

Name of the adapter property providing the message text that is visible inside the status bar. The default property name is messageShortText and is provided by the Model-class.

Please pay attention: changing this property means that you also have to override the "outputMessage(...)" methods inside your adapter accordingly.

Optional  
longtextprop

Name of the adapter property providing the long message text. The long text pops up if clicking onto the short text mesage. The default property name is messageLongText and is provided by the Model-class.

Please pay attention: changing this property means that you also have to override the "outputMessage(...)" methods inside your adapter accordingly.

Optional  
straighttext

If the text of the control contains HTML tags then these are by default interpreted by the browser. Specifiying STRAIGHTTEXT as "true" means that the browser will directly render the characters without HTML interpretation.

Example: if you want to output the source of an HTML text then STRAIGHTTEXT should be set to "true".

Optional

true

false

withdistance

If set to TRUE then an additional distance will be added at the top of the statusbar. Default is FALSE:

Optional

true

false

comment

Comment without any effect on rendering and behaviour. The comment is shown in the layout editor's tree view.

Optional  
Miscellaneous
testtoolid

Use this attribute to assign a fixed control identifier that can be later on used within your test tool in order to do the object identification

Optional  

Top of page

STATUSBARSSW Properties

Basic
comment

Comment without any effect on rendering and behaviour. The comment is shown in the layout editor's tree view.

Optional  
Miscellaneous
testtoolid

Use this attribute to assign a fixed control identifier that can be later on used within your test tool in order to do the object identification

Optional  

Top of page