-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbs-grid.php
More file actions
26 lines (26 loc) · 781 Bytes
/
bs-grid.php
File metadata and controls
26 lines (26 loc) · 781 Bytes
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
<?php
$dataurl = "ajax.php?module=mymodule&command=getJSON&jdata=grid";
?>
<div id="toolbar-all">
<button id="remove-all" class="btn btn-danger btn-remove" data-type="mymodule" disabled data-section="all">
<i class="glyphicon glyphicon-remove"></i> <span><?php echo _('Delete')?></span>
</button>
</div>
<table id="mygrid"
data-url="<?php echo $dataurl?>"
data-cache="false"
data-toolbar="#toolbar-all"
data-maintain-selected="true"
data-show-columns="true"
data-show-toggle="true"
data-toggle="table"
data-pagination="true"
data-search="true"
class="table table-striped">
<thead>
<tr>
<th data-field="name"><?php echo _("Items")?></th>
<th data-field="link" data-formatter="linkFormatter"><?php echo _("Actions")?></th>
</tr>
</thead>
</table>