如何在数据行中添加按钮

如何在相同位置添加按钮,但在右侧(下图)。

我的按钮和我想把它放在哪里

http://img1.mukewang.com/63f5f7ac0001da0d18960326.jpg

我正在使用烧瓶(python)和 js。


我自己找不到解决方案。


我在 json 中获取数据。


html代码表:


!-- Build datatable -->

<div class="row-90">

    <table class="table display" id="calEvents">

        <thead>

            <tr>

                <th scope="col">ID</th>

                <th scope="col">GROUP</th>

                <th scope="col">WEEKDAY</th>

                <th scope="col">DATE</th>

                <th scope="col">TICKER</th>

                <th scope="col">EVENT</th>

                <th scope="col">READX</th>

                <th scope="col">ACTION </th>

            </tr>

          

        </thead>

    </table>

和java脚本。


    $('#calEvents').DataTable( {

    "processing": true,

    "serverSide": false,

    "order": [[ 3, "asc" ]],

    "ajax": "/api/v1/calendar/get",

    'columnDefs': [

        {

           targets: 2, render: function(data1){ return moment(data1).format('dddd')},

        }, 

        { targets: 3, render: function(data2){ return moment(data2).format('YYYY-MM-DD')}},

    ]

 

} );


慕丝7291255
浏览 135回答 1
1回答

慕村225694

我发现解决方案使用目标:-1,然后在数据表中最后添加按钮。我的代码&nbsp;targets:&nbsp;-1,&nbsp;defaultContent:&nbsp;'<button&nbsp;name="edit"&nbsp;class="btn&nbsp;btn-secondary"&nbsp;type="button">Edit</button>' &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;+&nbsp;'&nbsp&nbsp;<button&nbsp;name="delete"&nbsp;class="btn&nbsp;btn-danger"&nbsp;type="button">Delete</button>'
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python