1
0
Fork 0
forked from 0x2620/oxjs

add an optional function to textlist columns that maps values to sort values

This commit is contained in:
rolux 2011-05-22 15:14:42 +02:00
commit a3c18e57b0
6 changed files with 34 additions and 16 deletions

View file

@ -123,7 +123,7 @@ Ox.Form = function(options, self) {
} else {
Ox.forEach(arguments[0], function(value, key) {
var index = getItemIndexById(key);
index > -1 && Ox.print(key, value)
//index > -1 && Ox.print(key, value)
index > -1 && self.options.items[index].options({value: value});
});
return that;