bootstrap-table方法之:resetView,重新加載表格視圖,一般用於重設表格的高度和寬度


官方地址:http://issues.wenzhixin.net.cn/bootstrap-table/methods/resetView.html

<!DOCTYPE html>
<html>
<head>
    <title>resetView</title>
    <meta charset="utf-8">
    <link rel="stylesheet" href="../assets/bootstrap/css/bootstrap.min.css">
    <link rel="stylesheet" href="../assets/bootstrap-table/src/bootstrap-table.css">
    <link rel="stylesheet" href="../assets/examples.css">
    <style>
        .div-table {width: 600px;}
    </style>
    <script src="../assets/jquery.min.js"></script>
    <script src="../assets/bootstrap/js/bootstrap.min.js"></script>
    <script src="../assets/bootstrap-table/src/bootstrap-table.js"></script>
    <script src="../ga.js"></script>
</head>
<body>
    <div class="container">
        <h1>resetView</h1>
        <p>
            Reset the bootstrap table view, for example reset the table height: <code>$table.bootstrapTable('resetView');</code>
        </p>
        <div id="toolbar">
            <button id="button" class="btn btn-default">Large and resetView</button>
            <button id="button2" class="btn btn-default">Small and resetView</button>
        </div>
        <div class="div-table">
            <table id="table"
                   data-toggle="table"
                   data-toolbar="#toolbar"
                   data-height="460"
                   data-url="../json/data1.json">
                <thead>
                <tr>
                    <th data-field="id">ID</th>
                    <th data-field="name">Item Name</th>
                    <th data-field="price">Item Price</th>
                </tr>
                </thead>
            </table>
        </div>
    </div>
<script>
    var $div = $('.div-table'),
        $table = $('#table'),
        $button = $('#button'),
        $button2 = $('#button2');

    $(function () {
        $button.click(function () {
            $div.width($div.width() + 50);
            $table.bootstrapTable('resetView');
        });
        $button2.click(function () {
            $div.width($div.width() - 50);
            $table.bootstrapTable('resetView');
        });
    });
</script>
</body>
</html>

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM