> as far as I recognize, something like this
> 
>   //...
>   setColumns(["First name", "Middle name", "Last name"],
>              [0, 1, 2]);
>   //...
>   // Data "example"
>   data = [ {"foo", "bar", "baz"},
>            {"Foo!","BAR!", "zoo"}, ...];

Neat trick, but presumably you meant:

  data = [ ["foo", "bar", "baz"],
           ["Foo!","BAR!", "zoo"], ...];

In our case I translate the data from this minimal form to the dictionary
form using Javascript, so bandwidth is kept to a minimum but a dict can
still be used. The raw data, which includes fields that aren't shown but
which are important for context menu, defining colour of the row,
identifying rows etc is stored in the dict with a key that isn't
otherwise used.
           
Hugh

-------------------------------------------------------------------------
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
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to