Matt provided an answer for this already:
page.getButton().setTextColor("#AAAAAA");Marco Vecchi wrote: > i want change the color of the text of title of pageview inside the tabview. > How???? > >> Date: Thu, 22 Jan 2009 14:15:14 +0100 >> From: [email protected] >> To: [email protected] >> Subject: Re: [qooxdoo-devel] tabview.Page don't take the text color -> > label >> >> Hi Marco, >> >> if you want to change the color for all pages, you can write your own >> appearance. >> >> Cheers, >> Chris >> >> --- code snippet --- >> var page = new qx.ui.tabview.Page("Test"); >> page.setAppearance("mytabview-page"); >> >> >> qx.Theme.define("test.theme.Appearance", >> { >> extend : qx.theme.modern.Appearance, >> >> appearances : >> { >> "mytabview-page" : "tabview-page", >> >> "mytabview-page/button" : >> { >> alias : "atom", >> include : "tabview-page/button", >> >> style : function(states) >> { >> return { >> textColor : states.checked ? "red" : "green" >> }; >> } >> } >> } >> }); >> >> Marco Vecchi schrieb: >> > hi developers, >> > why in this code, don't take the color the text of PageView but the >> > text is write fine ?? >> > >> > var lab1 = new qx.ui.basic.Label("Impostazioni di base:"); >> > lab1.setTextColor("#AAAAAA"); >> > var page1 = new qx.ui.tabview.Page(lab1.getContent()); >> > >> > thkkkk >> > Marco Vecchi >> > >> > ------------------------------------------------------------------------ >> > Invite your mail contacts to join your friends list with Windows Live >> > Spaces. It's easy! Try it! >> > > <http://spaces.live.com/spacesapi.aspx?wx_action=create&wx_url=/friends.aspx&mkt=en-us> > >> > >> > ------------------------------------------------------------------------ >> > >> > > ------------------------------------------------------------------------------ >> > This SF.net email is sponsored by: >> > SourcForge Community >> > SourceForge wants to tell your story. >> > http://p.sf.net/sfu/sf-spreadtheword >> > ------------------------------------------------------------------------ >> > >> > _______________________________________________ >> > qooxdoo-devel mailing list >> > [email protected] >> > https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel >> > >> >> >> -- >> Christian Schmidt >> Software Engineer >> Core Development :: Web Technologies >> >> 1&1 Internet AG >> Ernst-Frey-Str. 9 >> 76135 Karlsruhe, Germany >> http://www.1und1.de >> >> 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 >> >> >> > ------------------------------------------------------------------------------ >> This SF.net email is sponsored by: >> SourcForge Community >> SourceForge wants to tell your story. >> http://p.sf.net/sfu/sf-spreadtheword >> _______________________________________________ >> qooxdoo-devel mailing list >> [email protected] >> https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel > > ------------------------------------------------------------------------ > See all the ways you can stay connected to friends and family > <http://www.microsoft.com/windows/windowslive/default.aspx> > > > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------------ > This SF.net email is sponsored by: > SourcForge Community > SourceForge wants to tell your story. > http://p.sf.net/sfu/sf-spreadtheword > > > ------------------------------------------------------------------------ > > _______________________________________________ > qooxdoo-devel mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel ------------------------------------------------------------------------------ This SF.net email is sponsored by: SourcForge Community SourceForge wants to tell your story. http://p.sf.net/sfu/sf-spreadtheword _______________________________________________ qooxdoo-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
