update manage places / manage events

This commit is contained in:
rlx 2012-02-20 18:31:45 +00:00
commit e4b60c83c2
8 changed files with 676 additions and 482 deletions

View file

@ -1390,7 +1390,6 @@ Ox.List = function(options, self) {
updateQuery();
}
} else if (key == 'selected') {
//Ox.Log('List', 'setOption selected', value)
previousSelected = self.selected;
setSelected(value);
// fixme: the following was added in order

View file

@ -585,7 +585,7 @@ Ox.TextList = function(options, self) {
}
function getCell(id, key) {
Ox.Log('List', 'getCell', id, key)
Ox.print('List', 'getCell', id, key)
var $item = getItem(id);
key = key || ''; // fixme: what is this?
return $($item.find('.OxCell.OxColumn' + Ox.toTitleCase(key))[0]);