I am learning qooxdoo for a week. I started with user-manual. By the 
appearance chapter, I try to change font size of all text-fields, label, 
atom, etc.. My code is here:
    var theme =  
qx.manager.object.AppearanceManager.getInstance().getAppearanceTheme();
    theme.getAppearance('atom').setup = function(){
        return
        {
            this.font = new qx.renderer.font.Font(15, "Verdana");
        };
    }
    theme.getAppearance('label').setup = function(){
        return
        {
            this.font = new qx.renderer.font.Font(15, "Verdana");
        };
    }

But anything is happen. What can I do?

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to