如何在bootgrid表中的最新记录中闪烁文本?

时间:2017-08-21 14:16:17

标签: jquery html css mysql

我使用了下面的bootgrid表。我想知道是否可能,我如何添加文字,例如最新记录中的"新" ,即行。

我找到的闪烁文本代码在这里:Blinking text

表格代码:

<table id="employee_grid" id="box-table-a" cellspacing="0" width="100%" class="table table-bordered table-hover" style="border-radius:10px; overflow: hidden">
<thead class="thead-inverse" align="center">
    <tr style="background-color:#20B2AA" style="color:red" class="border_bottom">
        <th data-column-id="id" data-order="desc" data-type="numeric" data-identifier="true">Sr.No.</th>
        <th data-column-id="date">Test Date</th>
        <th data-column-id="version">[![enter image description here][2]][2]Version</th>
        <th data-column-id="test_type">Test Type</th>
        <th data-column-id="tester">Tester</th>
        <th data-column-id="step1">step1</th>
        <th data-column-id="step2">step2</th>
        <th data-column-id="step3">step3</th>
        <th data-column-id="commands" data-formatter="commands" data-sortable="false">Commands</th>
    </tr>
</thead>

enter image description here

1 个答案:

答案 0 :(得分:1)

我不确定您是否正在尝试为您的字段添加文字闪烁或添加文字。

首先我建议改变

<th> to <td>

因为是标题,

其次你可以添加&#34; New&#34;通过在您的<th><th/>标签之间添加div来加入一些文字

<span class="newtxt" style="position:absolute;">New</span>

默认情况下应该转到单元格的左上角。