智能表寻呼机无法正常工作

时间:2015-05-18 00:37:39

标签: angularjs asp.net-mvc-4 smart-table

我有一个将AngularJs作为javascript框架的Asp.net MVC项目。

我正在为我的table \ grid要求使用smart-table angular插件。一切正常,但寻呼机根本没有显示在页面上。

以下是我的HTML代码:

<div data-ng-controller="gridcontroller" class="row">
    <label>Grid demo</label>
    <table data-st-table="griddata" class="table striped">
        <thead>
            <tr>
                <th>first name</th>
                <th>last name</th>
                <th>birth date</th>
                <th>balance</th>
                <th>email</th>
            </tr>
        </thead>
        <tbody>
            <tr data-ng-repeat="row in griddata">
                <td data-ng-bind='row.firstName'></td>
                <td data-ng-bind='row.lastName'></td>
                <td data-ng-bind='row.birthDate'></td>
                <td data-ng-bind='row.balance'></td>
                <td data-ng-bind='row.email'></td>
            </tr>
        </tbody>
        <tfoot>
            <tr>
                <td colspan="5" class="text-center">
                    <div st-template="~/Scripts/Angular/Plugins/pagination.html" st-pagination="" 
st-items-by-page="10">
                    </div>
                </td>
            </tr>
        </tfoot>
    </table>

Pagination.html标记如下:

<div class="pagination" ng-if="pages.length >= 2">
<ul class="pagination">
    <li ng-if="currentPage > 1">
        <a ng-click="selectPage(1)">&lt;&lt;</a>
    </li>
    <li ng-if="currentPage > 1">
        <a ng-click="selectPage(currentPage-1)">&lt;</a>
    </li>
    <li ng-repeat="page in pages" ng-class="{active: page==currentPage}">
        <a ng-click="selectPage(page)">{{page}}</a>
    </li>
    <li ng-if="currentPage < numPages">
        <a ng-click="selectPage(currentPage+1)">></a>
    </li>
    <li ng-if="currentPage < numPages">
        <a ng-click="selectPage(numPages)">>></a>
    </li>
</ul>

当我运行网站时,我看到包含所有记录的网格(在我的情况下为60),寻呼机标记显示如下:

<tfoot>
   <tr>
      <td colspan="5" class="text-center">
           <div st-template="/Scripts/Angular/Plugins/pagination.html"                           st-pagination="" st-items-by-page="itemsByPage" class="ng-isolate-scope">
               <!-- ngIf: pages.length >= 2 -->
          </div>
      </td>
   </tr>
 </tfoot>

我做了网站上提到的每一步,但无法使寻呼机工作。 非常感谢任何帮助。

1 个答案:

答案 0 :(得分:1)

如果您正在使用服务器端分页,那么您需要告诉智能表有关页面的数量,以便它将获得有关它将要显示的页面的线索并将其事件绑定在其上

tablestate.pagination.numberOfPages = response.totalPages;

您必须设置从响应到tablestate的分页对象numberOfPages属性的总页数。