未找到结果数据表时如何启用按钮 [英] How enable button when no results found datatables

查看:90
本文介绍了未找到结果数据表时如何启用按钮的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

<script>
    $(document).ready(function() {
        $('#dataTables-example').DataTable({
                responsive: true
        });
    });
    </script>
<script>
$(document).ready(function () {

   $('#dataTables-example').dataTable( {
    "fnDrawCallback": function( oSettings ) {
        if ($(".dataTables_empty")[0]) {
            $('#newclient').prop("disabled", false);
        } else {
            $('#newclient').prop("disabled", true);
        }
    }
  } );
});
</script>

    <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
  <script src="//cdn.datatables.net/1.10.4/js/jquery.dataTables.min.js"></script>
    <script src="//cdn.datatables.net/plug-ins/3cfcc339e89/integration/bootstrap/3/dataTables.bootstrap.js"></script>
	<link href="//cdn.datatables.net/plug-ins/3cfcc339e89/integration/bootstrap/3/dataTables.bootstrap.css" rel="stylesheet">
    <link href="//cdn.datatables.net/1.10.4/css/jquery.dataTables.min.css" rel="stylesheet">    
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">

</head>

<body>


                        	<div class="add-client"><button type="button" class="btn btn-primary btn-sm" id="newclient"  disabled="true">Add Client</button></div>
                    
                                <table class="table table-striped table-bordered table-hover" id="dataTables-example">
                                    <thead>
                                        <tr>
                                            <th>Name</th>
                                            <th>File Number</th>
                                            <th>Department</th>
                                            <th>Date</th>
                                            <th>User Name</th>
                                            <th>Password</th>
                                        </tr>
                                    </thead>
                                    <tbody>
                                        <tr class="odd gradeX">
                                            <td><a href="view-client.html">Mbello Elizabeth</a></td>
                                            <td>954687</td>
                                            <td>w547</td>
                                            <td>October 15 2013</td>
                                            <td>Mbello</td>
                                            <td>cfhqsuvx</td>
                                        </tr>

                                    </tbody>
                                </table>

我正在使用DataTables,我需要要在搜索后未找到结果时启用按钮,任何人都可以帮我。

I'm using DataTables and I need to enable a button when no results found after searching, Any one can help me please.

谢谢

它可以在这里使用,但在我的页面上不起作用,我不知道这是什么问题

it works here but it dosen't work in my page, I don't know what is the problem

推荐答案

您可以使用DataTables绘制回调以找出当前表中是否没有结果。 fnDrawCallback

You could use the DataTables draw callback to find out if there are no results in the current table. fnDrawCallback

这是一个简单的< a href = http://jsfiddle.net/dr2r5nvd/1/ rel = nofollow>小提琴,以检查在没有结果的搜索后如何启用按钮。

This is a simple fiddle to check how to enable a button after searching with no results.

Javascript:

Javascript:

$(document).ready(function () {
  $('#example').dataTable( {
    "fnDrawCallback": function( oSettings ) {
        if ($(".dataTables_empty")[0]) {
            $('#test').prop("disabled", false);
        } else {
            $('#test').prop("disabled", true);
        }
    }
  } );
});

这篇关于未找到结果数据表时如何启用按钮的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆