Hi Chrjab,

I found a very easy way to do this:

Add the following code into your page initialize function:

_initialize : function()
{
..
.
.
    
      
  ///////////////////////////////////////
  // The Toolbar:
  var tb = new qx.ui.mobile.toolbar.ToolBar();
  
  ///////////////////////////////////////
  // A Toolbutton / Change path to Icon
  var tButton1 = new
qx.ui.mobile.toolbar.Button(this.tr("Setting"),"PathToIcon/icon1.png");
  tb.add(tButton1);
      
  this.add(tb);

  ///////////////////////////////////////
  // The Toolbar listener
  tButton1.addListener("tap", function(e)
  {
    this.fireDataEvent("DeclaredEvent");
  }, this);
.
.
.


Regards

Kora



--
View this message in context: 
http://qooxdoo.678.n2.nabble.com/Place-in-bottom-in-mobile-application-tp7581209p7581215.html
Sent from the qooxdoo mailing list archive at Nabble.com.

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to