zoukankan      html  css  js  c++  java
  • jquery.treetable.js

    html:
     
    <table class="table table-hover table-responsive main-list" id="columntable">
        <tr>
            <th class="">教材名称/章名称/节名称/单元名称/知识点名称</th>
            <th class="text-center">重点、常考</th>
            <th class="text-center">难点</th>
            <th class="text-center">基础</th>
            <th class="text-right">
                <a href="">导出</a>
                基础</th>
        </tr>
        <tr ng-repeat="item in treeLists" data-tt-id="{{item.id}}" data-tt-parent-id="{{item.parentid}}" on-finish-render-filters>
            <td class="">
                {{item.name}}
            </td>
            <td class="text-center">{{item.emphasis}}</td>
            <td class="text-center">{{item.difficulty}}</td>
            <td class="text-center">{{item.basis}}</td>
            <td class="text-right"><a ui-sref="node-weight-info">查看</a></td>
        </tr>
    </table>
     
    data-tt-id="{{item.id}}" data-tt-parent-id="{{item.parentid}}"     得加上
     
    js
    $('#columntable').treetable({expandable:false},true);
    

      

     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
  • 相关阅读:
    centos 6 升级gcc
    linux fdisk 分区
    centos使用163的源
    工作流发布成功但不能自动启动
    可怕的断电
    FTP 之 550 permission denied
    Track & Trace
    AutoKey思想的應用(二)
    Windows登錄過程淺析
    snapshot.exe出現異常
  • 原文地址:https://www.cnblogs.com/lhy-93/p/5741598.html
Copyright © 2011-2022 走看看