here is a simple code (i test it on playground) to set another behavior for the 
resize colmn model...

var simple = new qx.ui.table.model.Simple();
simple.setColumns(["Column #1", "Column #2", "Column #3", "Column #4"], 
['col1', 'col2', 'col3', 'col4']);

var table = new qx.ui.table.Table(simple, {
  tableColumnModel : function(obj) {
    return(new qx.ui.table.columnmodel.Resize(obj));
  }
});
var behavior = new qx.ui.table.columnmodel.resizebehavior.Default();

doc.add(table, {left : 100, top : 100});


table.getTableColumnModel().setBehavior(behavior);


is there a bug??? since migration to 0.8.3 i get an error in the last line.

Timo

------------------------------------------------------------------------------
Come build with us! The BlackBerry® Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9-12, 2009. Register now!
http://p.sf.net/sfu/devconf
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to