Hi Phillipp,

Philipp Wabinski wrote:
> In 0.6 this code was working:
>
>       var theme =
> qx.manager.object.AppearanceManager.getInstance().getAppearanceTheme();
>       var apar = theme._appearances['table-focus-indicator'];
>       apar.state = function() {return {zIndex: -1}};
If you write it like this

--snip--
  var theme = qx.theme.manager.Appearance.getInstance().getAppearanceTheme();
  var apar   = theme.appearances['table-focus-indicator'];
  apar.style = function() { return { zIndex : -1 } };
--snip--

It should work as expected. However it is better to implement these changes 
into an own appearance theme. You can easily inherit from an existing one and 
overwrite the parts which you need to customize for your application.

see 
<http://qooxdoo.org/documentation/0.7/theme_support#defining_appearance_themes> 
for details.

cheers,
  Alex

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to