*hiya!* On Aug 3, 2007, at 5:27 AM, MootCycle wrote: > I have a table with a large amount of data pushed to it from a > server. > It would be nice to be able to filter the data on the client side > so we do > not have to re-request all the data from the server.
try ---- var tableModel = qx.ui.table.model.Simple(); // table with three fields tableModel.setColumns(["hide_me", "field", "field"]); var table = new qx.ui.table.Table(tableModel); // set first column (0) invisible table.getTableColumnModel().setColumnVisible(0, false); ---- bye Wolfgang ------------------------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ qooxdoo-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
