This commit is contained in:
rlx 2013-07-13 21:06:03 +00:00
parent 74d4c16e3a
commit e283ff1053
3 changed files with 2 additions and 32 deletions

View file

@ -192,15 +192,6 @@ Ox.IconList = function(options, self) {
return that;
};
/*@
paste <f> paste into list
() -> <o> the list
@*/
that.paste = function(data) {
that.$element.paste(data);
return that;
};
/*@
reloadList <f> reload list
() -> <o> the list

View file

@ -213,14 +213,6 @@ Ox.InfoList = function(options, self) {
return that;
};
/*@
paste <f> paste
@*/
that.paste = function(data) {
that.$element.paste(data);
return that;
};
/*@
reloadList <f> reloadList
@*/

View file

@ -972,12 +972,8 @@ Ox.TableList = function(options, self) {
addColumn(id);
};
that.addItem = function(item) {
/*
self.options.items.push(item);
that.$body.options({items: self.options.items});
//that.$body.options({selected: [item.id]});
*/
that.addItems = function(items) {
that.$body.addItems(items);
};
that.api = that.$body.options('items');
@ -1089,15 +1085,6 @@ Ox.TableList = function(options, self) {
return that;
};
/*@
paste <f> paste
(data) -> <o> paste data
@*/
that.paste = function(data) {
that.$body.paste();
return that;
};
/*@
reloadList <f> reloadList
(stayAtPosition) -> <o> reload list