menu.getItem

This commit is contained in:
j 2010-02-11 01:32:58 +05:30
parent ee677fbe8a
commit 27977a6d4d

View File

@ -1987,6 +1987,16 @@ requires
} }
}; };
that.getItem = function(id) {
var item;
$.each(that.menus, function(i, menu) {
item = menu.getItem(id);
if(!Ox.isUndefined(item))
return false;
});
return item;
};
return that; return that;
}; };
@ -2413,6 +2423,17 @@ requires
}; };
that.getItem = function(id) {
var _item;
$.each(this.items, function(i, item) {
if(item.options('id') == id) {
_item = item;
return false;
}
});
return _item;
};
that.hasEnabledItems = function() { that.hasEnabledItems = function() {
var ret = false; var ret = false;
$.each(that.items, function(i, item) { $.each(that.items, function(i, item) {