当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


jQWidgets jqxDataTable filterable属性用法及代码示例


jQWidgets 是一个 JavaScript 框架,用于为 PC 和移动设备制作基于 Web 的应用程序。它是一个非常强大、经过优化、独立于平台且得到广泛支持的框架。 jqxDataTable 用于读取和显示 HTML 表中的数据。这也用于显示来自各种数据源(如 XML、JSON、Array、CSV 或 TSV)的数据。

filterable 属性用于启用或禁用指定 jqxDataTable 的过滤函数。此属性接受布尔值。

用法:

设置可过滤属性:



$('#dataTable').jqxDataTable({filterable:true});  

获取可过滤属性:

var filterable = $('#dataTable').jqxDataTable('filterable'); 

链接文件:从给定链接下载 https://www.jqwidgets.com/download/。在 HTML 文件中,找到下载文件夹中的脚本文件。

<link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” />
<script type=”text/javascript” src=”scripts/jquery.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxdata.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxscrollbar.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxlistbox.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxdropdownlist.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxdatatable.js”></script>

例:下面的示例说明了 jQWidgets 可过滤属性。在下面的示例中,可过滤属性的值已设置为 “true”。

HTML


<!DOCTYPE html>
<html lang="en">
  <head>
    <link rel="stylesheet" href="
      jqwidgets/styles/jqx.base.css" type="text/css"/>
    <script type="text/javascript" 
      src="scripts/jquery.js"></script>
    <script type="text/javascript" 
      src="jqwidgets/jqxcore.js"></script>
    <script type="text/javascript" 
      src="jqwidgets/jqxdata.js"></script>
    <script type="text/javascript" 
      src="jqwidgets/jqxbuttons.js"></script>
    <script type="text/javascript" 
      src="jqwidgets/jqxscrollbar.js"></script>
    <script type="text/javascript" 
      src="jqwidgets/jqxlistbox.js"></script>
    <script type="text/javascript" 
      src="jqwidgets/jqxdropdownlist.js"></script>
    <script type="text/javascript" 
      src="jqwidgets/jqxdatatable.js"></script>
  </head>
  <body>
    <center>
      <h1 style="color:green;">
        GeeksforGeeks
      </h1>
  
      <h3>
        jQWidgets jqxDataTable filterable Property
      </h3>
  
      <div id="#Data_Table"></div>
      <input type="button" style="margin:29px;" 
        id="jqxbutton_for_filterable"
        value="Value of the filterable Property"/>
      <div id="log"></div>
  
    <script type="text/javascript">
        $(document).ready(function () {
            $("#Data_Table").jqxDataTable({
                filterable:true,
                columns:[{
                    text:'Employee_Name',
                    dataField:'Employee_Name',
                    width:190
                }, {
                    text:'Company',
                    dataField:'Company',
                    width:160
                }, {
                    text:'Designation',
                    dataField:'Designation',
                    width:190
                }]
            });
            $("#jqxbutton_for_filterable").
                jqxButton({
                    width:280
                });
            $('#jqxbutton_for_filterable').
                click(function () {
                    var value_of_filterable = $('#Data_Table')
                    .jqxDataTable('filterable');
  
                    $("#log").html(JSON.stringify(
                        value_of_filterable))
                });
        });
    </script>
      <table id="Data_Table" border="1">
        <thead>
          <tr>
            <th>Employee_Name</th>
            <th>Company</th>
            <th>Designation</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td>Rohit</td>
            <td>GeeksforGeeks</td>
            <td>HR</td>
          </tr>
          <tr>
            <td>Rahul</td>
            <td>Capgemini</td>
            <td>Software Engineer</td>
          </tr>
          <tr>
            <td>Vivek</td>
            <td>CESC</td>
            <td>Electrical Engineer</td>
          </tr>
          <tr>
            <td>Amit</td>
            <td>Apple</td>
            <td>Manager</td>
          </tr>
        </tbody>
      </table>
    </center>
  </body>
</html>

输出:

参考:https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxdatatable/jquery-datatable-api.htm?search=




相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 jQWidgets jqxDataTable filterable Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。