Lines Matching refs:box
100 tv.treeview.find('.tv_box:not(.boxExpanded)').each(function (index, box) { argument
101 var pos = $(box, tv.treeview).offset();
103 tv.expandBox(box, e);
115 tv.treeview.find('.tv_box.boxExpanded').each(function (index, box) { argument
116 …$(box).css('display', 'none').removeClass('boxExpanded').parent().find('.tv_box.collapsedContent')…
291 TreeViewHandler.prototype.expandBox = function (box, event) { argument
297 var box = $(box, this.treeview);
298 var bc = box.parent(); // bc is Box Container
299 var pid = box.attr('abbr');
309 expanded = box;
310 collapsed = box.clone();
314 box.prepend(loading_image);
318 box.load(tv.ajaxDetails + '&pid=' + encodeURIComponent(pid), function () {
323 box.css('width', tv.boxExpandedWidth * (tv.zoom / 100) + 'px');
330 if (box.hasClass('boxExpanded')) {
333 box.removeClass('boxExpanded');