1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- // Register tooltips
- $(function() {
- $('.tooltip-top').tooltip({placement: 'top', container: 'body'});
- $('.tooltip-bottom').tooltip({placement: 'bottom', container: 'body'});
- $('.tooltip-left').tooltip({placement: 'left', container: 'body'});
- $('.tooltip-right').tooltip({placement: 'right', container: 'body'});
- });
- // Tables
- function tableMassActions(label_none, label_selected) {
- var $controller = $('.mass-controller');
- function enableController(selected_no) {
- $controller.removeClass('btn-default');
- $controller.addClass('btn-primary');
- var fin_label = label_selected.replace(0, selected_no)
- $controller.html('<span class="fa fa-gears"></span> ' + fin_label);
- $controller.prop("disabled", false);
- }
- function disableController() {
- $controller.removeClass('btn-primary');
- $controller.addClass('btn-default');
- $controller.html('<span class="fa fa-exclamation-circle"></span> ' + label_none);
- $controller.prop("disabled", true);
- }
- $('.table tr').each(function() {
- var $row = $(this);
- var $checkbox = $row.find('input[type=checkbox]');
- var $label = $checkbox.parent();
- $label.addClass('ninja-label');
- $label.parent().append('<a href="#"><span class="fa fa-check"></span></a>');
- var $check = $label.parent().find('a');
- if ($checkbox.prop("checked")) {
- $check.toggleClass('active');
- $row.addClass('active');
- }
- $check.click(function() {
- $(this).toggleClass('active');
- if ($(this).hasClass('active')) {
- $(this).parent().find('input').prop("checked", true);
- $row.addClass('active');
- } else {
- $(this).parent().find('input').prop("checked", false);
- $row.removeClass('active');
- }
- var selected_no = $('.table tr.active').length
- if (selected_no > 0) {
- enableController(selected_no);
- } else {
- disableController();
- }
- return false;
- });
- var selected_no = $('.table tr.active').length
- if (selected_no > 0) {
- enableController(selected_no);
- } else {
- $controller.html('<span class="fa fa-exclamation-circle"></span> ' + label_none);
- $controller.prop("disabled", true);
- }
- });
- }
|