I’ve figured out how to handle a table row click:

    var table = new qx.ui.table.Table(tableModel);
    with (table) {
 
getSelectionModel().setSelectionMode(qx.ui.table.SelectionModel.SINGLE_SELEC
TION);
      getSelectionModel().addEventListener("changeSelection", function (e) {
        alert(e);
      });

But, what I can’t figure out is how do I get cell information.  For example,
if the value in the 1st column was some identifier, how would I retrieve
that?  Also, is there any to hide a table column (containing identifiers)
when the table is rendered?  Thanks for the help.

Joe Hudson

-- 
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.5.446 / Virus Database: 268.18.18/734 - Release Date: 3/26/2007
2:31 PM
 
-------------------------------------------------------------------------
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