column-picker-modal.blade.php
2 years ago
group-select.blade.php
2 years ago
rows.blade.php
2 years ago
table-toolbar.blade.php
2 years ago
table.blade.php
2 years ago
table-toolbar.blade.php
14 lines
| 1 | <div class="table-toolbar"> |
| 2 | <div class="button-modal-container" data-controller="columns"> |
| 3 | <button id="table-column-toggle-button" class="table-column-toggle-button iawp-button" data-action="columns#toggleModal" data-columns-target="modalButton"> |
| 4 | <span class="dashicons dashicons-columns"></span><?php esc_html_e('Toggle Columns', 'independent-analytics'); ?> |
| 5 | </button> |
| 6 | <?php echo iawp_blade()->run('tables.column-picker-modal', [ |
| 7 | 'columns' => $all_columns |
| 8 | ]); ?> |
| 9 | </div><?php |
| 10 | if ($group_html) { |
| 11 | echo $group_html; |
| 12 | } |
| 13 | ?> |
| 14 | </div> |