attaches a status bar to a window
| conf | object | optional, status bar init params | 
| obj | status bar object | 
/* conf param properties */
{
    text:   "Text", // status bar init text
    height: 20      // status bar init height
}
 
/* init/attach status bar */
 
// default behaviour
var sbObj = myWins.window(id).attachStatusBar();
 
// with text
var sbObj = myWins.window(id).attachStatusBar({text: "Loading..."});
 
// with text and custom height
var sbObj = myWins.window(id).attachStatusBar({text: "Loading...", height: 30});
 
/* operations with status bar object */
 
// set text
sbObj.setText("Page was successfuly loaded");
 
// get text
var text = sbObj.getText();
Since version 4.1 toolbar can be attached to statusbar in order to be used for paging in grid:
// first attach status bar
myWins.window(id).attachStatusBar({
    text:   "<div id='pagingArea'></div>",
    paging: true
});
 
// then init paging in grid
myGrid.enablePaging(true, 9, 3, "pagingArea");
myGrid.setPagingSkin("toolbar");