Hi Dimitri,
sorry for the late answer, but your mail arrived me today. It seems to
me that there was an issue by sourceforge.
I would prefer to implement an own TabView which extend the qx TabView.
The qx TabView uses a Stack to show the correct Page on top. The Stack
container supports two methods for next and previous. Your own TabView
should only delegate the next or previous call to the stack instance:
qx.Class.define("qx.ui.tabview.TabView",
{
extend : qx.ui.tabview.TabView,
members :
{
next : function() {
this.getChildControl("pane").next();
},
previous : function() {
this.getChildControl("pane").previous();
}
}
});
Cheers,
Chris
fly3rman schrieb:
> Hi again,
> I iam writing a formular assistent and need a forward and backward button.
> Problem is to adresse the previous/next tab.
> I found getChildren
> this gives me:
> qx.ui.tabview.Page[24],qx.ui.tabview.Page[2o],qx.ui.tabview.Page[32],qx.ui.tabview.Page[3k],qx.ui.tabview.Page[42]
> But for setSelection i do need the pageobject name.
> Is there any way to use the informations from getChildren with setSelection?
>
> Any other ideas? Store the Information in a array and work somehow that way?
>
> MFG Dimitri Henning
>
> ------------------------------------------------------------------------------
> Come build with us! The BlackBerry® Developer Conference in SF, CA
> is the only developer event you need to attend this year. Jumpstart your
> developing skills, take BlackBerry mobile applications to market and stay
> ahead of the curve. Join us from November 9-12, 2009. Register now!
> http://p.sf.net/sfu/devconf
> _______________________________________________
> qooxdoo-devel mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
>
--
Christian Schmidt
Software Entwickler
1&1 Internet AG - Web Technologies
Ernst-Frey-Straße 9 · DE-76135 Karlsruhe
[email protected]
Amtsgericht Montabaur / HRB 6484
Vorstände: Henning Ahlert, Ralph Dommermuth, Matthias Ehrlich, Thomas
Gottschlich, Robert Hoffmann, Markus Huhn, Hans-Henning Kettler, Dr. Oliver
Mauss, Jan Oetjen
Aufsichtsratsvorsitzender: Michael Scheeren
------------------------------------------------------------------------------
Come build with us! The BlackBerry® Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay
ahead of the curve. Join us from November 9-12, 2009. Register now!
http://p.sf.net/sfu/devconf
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel