SmartAdmin 기본 테이블 소스
마스터욱
0
20
0
0
2017-08-25 15:01:21
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | <article class="col-xs-12 col-sm-12 col-md-12 col-lg-12 sortable-grid ui-sortable"> <div class="jarviswidget jarviswidget-color-blueDark jarviswidget-sortable" id="wid-id-0" data-widget-editbutton="false" role="widget"> <header role="heading"> <span class="widget-icon"> <i class="fa fa-table"></i> </span> <h2>Normal Table</h2> <span class="jarviswidget-loader"><i class="fa fa-refresh fa-spin"></i></span> </header> <div role="content"> <div class="widget-body"> <div class="table-responsive"> <table class="table table-bordered"> <thead> <tr> <th>Column name</th> <th>Column name</th> <th>Column name</th> <th>Column name</th> </tr> </thead> <tbody> <tr> <td>Row 1</td> <td>Row 2</td> <td>Row 3</td> <td>Row 4</td> </tr> </tbody> </table> </div> </div> </div> </div> </article> | cs |