Ok solved :) it works! The fields of JSON store created models were all of
String type, instead of fields of JSON marshal created models that were of
the right type (Number and String).
Thanks for the help, bye!
--
View this message in context:
http://qooxdoo.678.n2.nabble.com/how-to-use-dinamic
Mmm.. infact it's possible I did mistakes in the sort function.
The sort is done by the time field, a float containing a grand total of
seconds (raw seconds, without minutes and/or hours).
This is the code:
sortAnnotations : function(a1,a2) {
if(a1.getTime() == a2.getTime()) return 0;
Hi,
I'm using data binding in my apllication. I used the qx.data.store.Json
class to fetch a PHP script that outputs JSON encoded data. The data are
correctly gotten, infact I can use it with success. Further I can see with
the debugger that it creates a class in qx.data.model. Since the structure