废话不多说了,直接给大家贴代码,具体代码如下所示:
this.$body.find('> tr[data-index] > td > .detail-icon').off('click').on('click', function () { var $this = $(this), //a.detail-icon $tr = $this.parent().parent(), //current row index = $tr.data('index'), row = data[index]; // Fix #980 Detail view, when searching, returns wrong row // remove and update if ($tr.next().is('tr.detail-view')) { //exsit $this.find('i').attr('class', sprintf('%s %s', that.options.iconsPrefix, that.options.icons.detailOpen)); that.trigger('collapse-row', index, row); $tr.next().remove(); $tr.next().remove(); } else { //not exsit and add $this.find('i').attr('class', sprintf('%s %s', that.options.iconsPrefix, that.options.icons.detailClose)); //$tr.after(sprintf('<tr><td colspan="%s"></td></tr>', $tr.find('td').length)); $tr.after(sprintf('<tr></tr>')); $tr.after(sprintf('<tr></tr>')); var $element1 = $tr.next(); var $element2 = $element1.next(); //var $ //var $element = $tr.next().find('td'); var content = calculateObjectValue(that.options, that.options.detailFormatter, [index, row, $element1, $element2], ''); //console.log(content); //head , body Object if($element1.length === 1) { $element1.append(content.head); $element2.append(content.body); } that.trigger('expand-row', index, row, $element1, $element2); } that.resetView(); return false; });
以上所述是小编给大家介绍的修改 bootstrap table 默认detailRow样式的实例代码,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!
您可能感兴趣的文章: