DWZ tab选项卡共用页面分页组件刷新不起作用、失效问题

初用DWX,还是碰到好多问题,谨以此文记录tab 分页刷新问题

  • HTML页面(tab页面):

    注:这儿id不能省略
  • 列表页面

    注:id为固定的 pagerForm rel为 pagerForm
  • page页面:
    1
    <div th:include="views/common/pager_local :: tab"></div>
    pager_local.html
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    <th:block th:fragment="tab">
    <div class="panelBar" th:online="text">
    <div class="pages">
    <span th:text="#{TEXT_DISPLAY}">display</span>
    <select class="combox" name="numPerPage" th:onchange="'javascript:tabPageBreak('+'{numPerPage:'+this.value+'}'+','+${tabTagId}+');'">
    <option value="20" th:selected="${infos.numPerPage} == 20 ? 'selected' " >20</option>
    <option value="50" th:selected="${infos.numPerPage} == 50 ? 'selected' ">50</option>
    <option value="100" th:selected="${infos.numPerPage} == 100 ? 'selected' " >100</option>
    <option value="200" th:selected="${infos.numPerPage} == 200 ? 'selected' " >200</option>
    </select>
    <span><span th:text="#{TEXT_ITEMS}">items</span> <span>&nbsp;,&nbsp;</span><span th:text="#{TEXT_TOTAL}">total</span><span><label style="color:blue;">&nbsp;[[${infos.totalCount}]]&nbsp;</label></span><span th:text="#{TEXT_ITEMS}">items</span></span>
    </div>
    <div class="pagination" targetType="navTab" th:rel="${tabTagId}" th:attr="totalCount=${infos.totalCount},numPerPage=${infos.numPerPage},currentPage=${infos.pageNum}" pageNumShown="10" ></div>
    </div>
    </th:block>
    注:tabTagId 为 tab中的id值
    1
    2
    3
    4
    function tabPageBreak(args, div){
    var tabpage = $(div).attr("id");
    dwzPageBreak({targetType:"navTab", rel:tabpage, data:args});
    }
    注:这儿的 div 获取到的是 id为 div 的整个标签

DWZ tab选项卡共用页面分页组件刷新不起作用、失效问题
http://yoursite.com/post/8f473d70.html/
Author
Chase Wang
Posted on
November 2, 2018
Licensed under