// // DocColumnView Tab (with mutliple doctypes) // features: // - create new // - view // - filter and show next // - special actions (Invite) // wn.widgets.DocColumnView = function(title, parent, items, opts) { this.columns = {}; this.items = items; this.page_head = new PageHeader(parent, title); this.make_columns(items.length, parent); for(var i=0; i1) { var l = []; for(var i=1; i< det.length; i++) { if(det[i] && det[i]!=det[0]) l.push(det[i]); } if(l.length) this.more_info = $a(this.content, 'div', 'list2-item-more-info', '', l.join(', ')) } } // select wn.widgets.dcvListItem.prototype.select = function() { if(this.list2.selected_item) this.list2.selected_item.deselect(); this.body.className = 'list2-item-div list2-item-selected'; this.list2.selected_item = this; } // deselect wn.widgets.dcvListItem.prototype.deselect = function() { this.body.className = 'list2-item-div'; }