Re: [qooxdoo-devel] Table questions

2006-08-29 Thread Ulrich Schreiner
the tablemodel has a method "setDataAsMapArray" where you can put an array of dictionaries to the table. the method "setColumns" takes an optional parameter "column-id's" which is a list of keys for the given dictionaries. so: you can create dictionaries data = [ {name:"Jimi Hendrix", id:1}, {

Re: [qooxdoo-devel] Table questions

2006-08-27 Thread dperez
Hi, I think the Table supports data in array format and also in dictionary format. The latest one should be able to add extra info. Keep in mind, that you can add extra info to any JS object. myArray = [1, 2, 3]; myArray.myData = "something"; Andréas Kühne wrote: > > Hi all, > > At our f

[qooxdoo-devel] Table questions

2006-08-25 Thread Andréas Kühne
Hi all,   At our firm we are developing a webbased course administration system using qooxdoo. The framework is just great and specially the new "namespace" version. Our integration with Struts is working just perfectly and is really easy to expand.   But now to our problem. We are using the lis