Ext.data.Types.SEATCATEGORY = {
convert: function(v) {
...
},
// TODO: supposed to use sortType, but doesn't work?!?
sorterFn: function(rec1, rec2) {
...
},
type: 'SeatCategory'
};
But I get an "Uncaught TypeError: Cannot set property 'SEATCATEGORY' of undefined" error. Like Ext.data.Types isn't defined yet. I'm actually trying to migrate a Sencha Touch 1 app to Sencha Touch 2. It's more compliated than expected )