Your Excellency,
you can easily assign percentage values for column widths by using the resizebevahior of the table. Have a look at this demo: http://demo.qooxdoo.org/current/demobrowser/ #table~Table_Resize_Columns.html -- snip -- var table = new qx.ui.table.Table (.......................) var tcm = table.getTableColumnModel(); // Obtain the behavior object to manipulate var resizeBehavior = tcm.getBehavior(); // This uses the set() method to set all attriutes at once; uses flex resizeBehavior.set(0, { width:"1*", minWidth:40, maxWidth:80 }); // We could also set them individually: resizeBehavior.setWidth(1, "50%"); -- snap -- The width for the second column is set to "50%". > two or more line columns for headers Could you explain what you mean with "two or more line columns for headers"? > a downloaadable documentation If you download the qooxdoo SDK you will find a pre-build API Viewer in "framework/api/". > a better examplze for tables that I can get running Have you seen our demos inside the demo browser? http://demo.qooxdoo.org/current/demobrowser/#table If you have already seen them, what kind of information do you need for getting started? >> extend : demobrowser.demo.table.TableDemo, >> where does this come from > no words where can I find any information about it. The TableDemo class is just a helper application which uses MUtil.js to create the infrastructure for our table demos. You will find both files in our demo browser in "demo/table". > how do I get backgorund colors in tables This depends on what part you want to have a background color: the complete table, only some rows, some columns or cells. > I worte a qooxdoo applkication plus a perl programm > how to use perl and get data to a perl prgramm, If you are > intereted for your online ducmentation. You use RPC to connect your Perl program with qooxdoo: http://qooxdoo.org/documentation/0.8/rpc_perl Kind regards Jonathan ------------------------------------------------------------------------------ Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, CA -OSBC tackles the biggest issue in open source: Open Sourcing the Enterprise -Strategies to boost innovation and cut costs with open source participation -Receive a $600 discount off the registration fee with the source code: SFAD http://p.sf.net/sfu/XcvMzF8H _______________________________________________ qooxdoo-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
