修改 bootstrap table 默认detailRow样式的实例代码
程序员文章站
2022-05-26 08:24:07
废话不多说了,直接给大家贴代码,具体代码如下所示:
this.$body.find('> tr[data-index] > td > .deta...
废话不多说了,直接给大家贴代码,具体代码如下所示:
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 class="detail-view"><td colspan="%s"></td></tr>', $tr.find('td').length)); $tr.after(sprintf('<tr class="detail-view detail-view-head"></tr>')); $tr.after(sprintf('<tr class="detail-view detail-view-body"></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样式的实例代码,希望对大家有所帮助
推荐阅读
-
bootstrap table 数据表格行内修改的实现代码
-
vue滚动固定顶部及修改样式的实例代码
-
bootstrap table 数据表格行内修改的实现代码
-
bootstrap table支持高度百分比的实例代码
-
BootStrap Table复选框默认选中功能的实现代码(从数据库获取到对应的状态进行判断是否为选中状态)
-
修改 bootstrap table 默认detailRow样式的实例代码
-
基于Bootstrap table组件实现多层表头的实例代码
-
微信小程序修改swiper默认指示器样式的实例代码
-
Bootstrap 实现表格样式、表单布局的实例代码
-
微信小程序修改checkbox的样式代码实例