pull/117/merge
null-d3v 10 years ago
commit a384e33736

@ -329,25 +329,15 @@ table.dataTable td {
display: inline-block; display: inline-block;
min-width: 1.5em; min-width: 1.5em;
padding: 0.5em; padding: 0.5em;
margin-left: 2px;
text-align: center; text-align: center;
text-decoration: none !important; text-decoration: none !important;
cursor: pointer; cursor: pointer;
*cursor: hand; *cursor: hand;
color: #333333 !important;
border: 1px solid transparent; border: 1px solid transparent;
} }
.dataTables_wrapper .dataTables_paginate .fg-button:active { .dataTables_wrapper .dataTables_paginate .fg-button:active {
outline: none; outline: none;
} }
.dataTables_wrapper .dataTables_paginate .fg-button:first-child {
border-top-left-radius: 3px;
border-bottom-left-radius: 3px;
}
.dataTables_wrapper .dataTables_paginate .fg-button:last-child {
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;
}
.dataTables_wrapper .dataTables_processing { .dataTables_wrapper .dataTables_processing {
position: absolute; position: absolute;
top: 50%; top: 50%;
@ -373,13 +363,6 @@ table.dataTable td {
background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%); background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
/* W3C */ /* W3C */
} }
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_processing,
.dataTables_wrapper .dataTables_paginate {
color: #333333;
}
.dataTables_wrapper .dataTables_scroll { .dataTables_wrapper .dataTables_scroll {
clear: both; clear: both;
} }
@ -406,12 +389,12 @@ table.dataTable td {
.dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_paginate { .dataTables_wrapper .dataTables_paginate {
float: none; float: none;
text-align: center; text-align: center;
} }
.dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_paginate { .dataTables_wrapper .dataTables_paginate {
margin-top: 0.5em; margin-top: 0.5em;
} }
} }
/* /*

@ -1,5 +1,5 @@
/*! DataTables jQuery UI integration /*! DataTables jQuery UI integration
* ©2011-2014 SpryMedia Ltd - datatables.net/license * ©2011-2014 SpryMedia Ltd - datatables.net/license
*/ */
/** /**
@ -10,147 +10,241 @@
* controls using jQuery UI. See http://datatables.net/manual/styling/jqueryui * controls using jQuery UI. See http://datatables.net/manual/styling/jqueryui
* for further information. * for further information.
*/ */
(function(window, document, undefined){ (function()
{
var factory = function( $, DataTable ) { var factory = function($, DataTable)
"use strict"; {
"use strict";
var sort_prefix = 'css_right ui-icon ui-icon-'; $.extend(true, DataTable.defaults,
var toolbar_prefix = 'fg-toolbar ui-toolbar ui-widget-header ui-helper-clearfix ui-corner-'; {
dom: "<'fg-toolbar ui-toolbar ui-widget-header ui-helper-clearfix ui-corner-tl ui-corner-tr'lfr>" +
/* Set the defaults for DataTables initialisation */ "t" +
$.extend( true, DataTable.defaults, { "<'fg-toolbar ui-toolbar ui-widget-header ui-helper-clearfix ui-corner-bl ui-corner-br'ip>",
dom: renderer: "jqueryui",
'<"'+toolbar_prefix+'tl ui-corner-tr"lfr>'+ });
't'+ DataTable.defaults.oLanguage.oPaginate.sEllipsis = "..."; // TODO Base DT file needs to be updated with this.
'<"'+toolbar_prefix+'bl ui-corner-br"ip>',
renderer: 'jqueryui' $.extend(DataTable.ext.classes,
} ); {
sFilterInput: "ui-corner-all",
sFooterTH: "ui-state-default",
$.extend( DataTable.ext.classes, { sHeaderTH: "ui-state-default",
"sWrapper": "dataTables_wrapper dt-jqueryui", sPageButton: "fg-button ui-button ui-state-default",
sPageButtonActive: "ui-state-highlight",
/* Full numbers paging buttons */ sPageButtonDisabled: "ui-state-disabled",
"sPageButton": "fg-button ui-button ui-state-default", sPaging: "dataTables_paginate paging_",
"sPageButtonActive": "ui-state-disabled", sScrollFoot: "dataTables_scrollFoot ui-state-default",
"sPageButtonDisabled": "ui-state-disabled", sScrollHead: "dataTables_scrollHead ui-state-default",
sSortAsc: "sorting_asc ui-state-default",
/* Features */ sSortDesc: "sorting_desc ui-state-default",
"sPaging": "dataTables_paginate fg-buttonset ui-buttonset fg-buttonset-multi "+ sSortable: "sorting ui-state-default",
"ui-buttonset-multi paging_", /* Note that the type is postfixed */ sSortableAsc: "sorting_asc_disabled ui-state-default",
sSortableDesc: "sorting_desc_disabled ui-state-default",
/* Sorting */ sSortableNone: "sorting_disabled ui-state-default",
"sSortAsc": "ui-state-default sorting_asc", sSortIcon: "DataTables_sort_icon",
"sSortDesc": "ui-state-default sorting_desc", sWrapper: "dataTables_wrapper dt-jqueryui ui-widget",
"sSortable": "ui-state-default sorting", });
"sSortableAsc": "ui-state-default sorting_asc_disabled",
"sSortableDesc": "ui-state-default sorting_desc_disabled", DataTable.ext.renderer.header.jqueryui = function(settings, $tableHead, column, classes)
"sSortableNone": "ui-state-default sorting_disabled", {
"sSortIcon": "DataTables_sort_icon", var sortClass = "";
if (column.bSortable)
/* Scrolling */ {
"sScrollHead": "dataTables_scrollHead "+"ui-state-default", if ($.inArray("asc", column.asSorting) !== -1)
"sScrollFoot": "dataTables_scrollFoot "+"ui-state-default", {
if ($.inArray("desc", column.asSorting) !== -1)
/* Misc */ {
"sHeaderTH": "ui-state-default", sortClass = "css_right ui-icon ui-icon-carat-2-n-s";
"sFooterTH": "ui-state-default" }
} ); else
{
sortClass = "css_right ui-icon ui-icon-carat-1-n";
DataTable.ext.renderer.header.jqueryui = function ( settings, cell, column, classes ) { }
// Calculate what the unsorted class should be }
var noSortAppliedClass = sort_prefix+'carat-2-n-s'; else if ($.inArray("desc", column.asSorting) !== -1)
var asc = $.inArray('asc', column.asSorting) !== -1; {
var desc = $.inArray('desc', column.asSorting) !== -1; sortClass = "css_right ui-icon ui-icon-carat-1-s";
}
if ( !column.bSortable || (!asc && !desc) ) { }
noSortAppliedClass = '';
} $("<div>",
else if ( asc && !desc ) { {
noSortAppliedClass = sort_prefix+'carat-1-n'; class: "DataTables_sort_wrapper",
} })
else if ( !asc && desc ) { .append($tableHead.contents())
noSortAppliedClass = sort_prefix+'carat-1-s'; .append($("<span>",
} {
class: classes.sSortIcon + " " + sortClass,
// Setup the DOM structure }))
$('<div/>') .appendTo($tableHead);
.addClass( 'DataTables_sort_wrapper' )
.append( cell.contents() ) $(settings.nTable).on("order.dt", function(event, context, sorting, columns)
.append( $('<span/>') {
.addClass( classes.sSortIcon+' '+noSortAppliedClass ) if (context === settings)
) {
.appendTo( cell ); var $sortIconSpan = $tableHead.find("span." + classes.sSortIcon);
// Attach a sort listener to update on sort $tableHead.removeClass(classes.sSortAsc + " " + classes.sSortDesc);
$(settings.nTable).on( 'order.dt', function ( e, ctx, sorting, columns ) { $sortIconSpan.removeClass("css_right ui-icon ui-icon-carat-1-n ui-icon-carat-1-s ui-icon-carat-2-n-s ui-icon-triangle-1-n ui-icon-triangle-1-s");
if ( settings !== ctx ) {
return; if (columns[column.idx] === "asc")
} {
$tableHead.addClass(classes.sSortAsc);
var colIdx = column.idx; $sortIconSpan.addClass("css_right ui-icon ui-icon-triangle-1-n");
}
cell else if (columns[column.idx] === "desc")
.removeClass( classes.sSortAsc +" "+classes.sSortDesc ) {
.addClass( columns[ colIdx ] == 'asc' ? $tableHead.addClass(classes.sSortDesc);
classes.sSortAsc : columns[ colIdx ] == 'desc' ? $sortIconSpan.addClass("css_right ui-icon ui-icon-triangle-1-s");
classes.sSortDesc : }
column.sSortingClass else
); {
$tableHead.addClass(column.sSortingClass);
cell $sortIconSpan.addClass(sortClass);
.find( 'span.'+classes.sSortIcon ) }
.removeClass( }
sort_prefix+'triangle-1-n' +" "+ });
sort_prefix+'triangle-1-s' +" "+ };
sort_prefix+'carat-2-n-s' +" "+
sort_prefix+'carat-1-n' +" "+ $.fn.dataTable.ext.renderer.pageButton.jqueryui = function(settings, host, index, buttons, page, pages)
sort_prefix+'carat-1-s' {
) // IE9 throws an "unknown error" if document.activeElement is used inside an iframe or frame.
.addClass( columns[ colIdx ] == 'asc' ? try
sort_prefix+'triangle-1-n' : columns[ colIdx ] == 'desc' ? {
sort_prefix+'triangle-1-s' : var activeElement = $(document.activeElement).data("dt-idx");
noSortAppliedClass
); var buttonClickHandler = function(event)
} ); {
}; settings.oApi._fnPageChange(settings, event.data.action, true);
};
var $host = $(host).empty();
/* var buttonIndex = 0;
* TableTools jQuery UI compatibility var addButton = function($container, button)
* Required TableTools 2.1+ {
*/ if ($.isArray(button))
if ( DataTable.TableTools ) { {
$.extend( true, DataTable.TableTools.classes, { var $buttonDiv = $("<" + (button.DT_el || "div") + ">").appendTo($container);
"container": "DTTT_container ui-buttonset ui-buttonset-multi", button.forEach(function(subButton)
"buttons": { {
"normal": "DTTT_button ui-button ui-state-default" addButton($buttonDiv, subButton);
}, });
"collection": { }
"container": "DTTT_collection ui-buttonset ui-buttonset-multi" else
} {
} ); var buttonText = "";
} var disabled = false;
var active = false;
}; // /factory switch (button)
{
case "ellipsis":
// Define as an AMD module if possible {
if ( typeof define === 'function' && define.amd ) { buttonText = settings.oLanguage.oPaginate.sEllipsis;
define( ['jquery', 'datatables'], factory ); disabled = true;
} break;
else if ( typeof exports === 'object' ) { }
// Node/CommonJS case "first":
factory( require('jquery'), require('datatables') ); {
} buttonText = settings.oLanguage.oPaginate.sFirst;
else if ( jQuery ) { disabled = page === 0;
// Otherwise simply initialise as normal, stopping multiple evaluation break;
factory( jQuery, jQuery.fn.dataTable ); }
} case "next":
{
buttonText = settings.oLanguage.oPaginate.sNext;
})(window, document); disabled = page === pages - 1;
break;
}
case "previous":
{
buttonText = settings.oLanguage.oPaginate.sPrevious;
disabled = page === 0;
break;
}
case "last":
{
buttonText = settings.oLanguage.oPaginate.sLast;
disabled = page === pages - 1;
break;
}
default:
{
buttonText = button + 1;
active = page === button;
disabled = false;
break;
}
}
var $buttonAnchor = $("<a>",
{
"aria-controls": settings.sTableId,
class: settings.oClasses.sPageButton + (active ? " " + settings.oClasses.sPageButtonActive : ""),
"data-dt-idx": buttonIndex,
id: index === 0 && typeof(button) === "string" ? settings.sTableId + "_" + button : null,
"tabindex": settings.iTabIndex,
})
.html(buttonText)
.appendTo($container)
.button(
{
disabled: disabled,
})
.removeClass("ui-corner-all");
settings.oApi._fnBindAction($buttonAnchor, { action: button, }, buttonClickHandler);
buttonIndex++;
}
};
buttons.forEach(function(button)
{
addButton($host, button);
});
$host.find("a:first").addClass("ui-corner-tl ui-corner-bl");
$host.find("a:last").addClass("ui-corner-tr ui-corner-br");
if (activeElement !== null)
{
$(host).find("[data-dt-idx=" + activeElement + "]").focus();
}
}
catch (exception) { }
};
/*
* TableTools jQuery UI compatibility
* Required TableTools 2.1+
*/
if (DataTable.TableTools)
{
$.extend(true, DataTable.TableTools.classes,
{
buttons:
{
normal: "DTTT_button ui-button ui-state-default",
},
collection:
{
container: "DTTT_collection ui-buttonset ui-buttonset-multi",
},
container: "DTTT_container ui-buttonset ui-buttonset-multi",
});
}
};
if (typeof(define) === "function" && define.amd)
{
define([ "jquery", "datatables" ], factory);
}
else if (typeof(exports) === "object")
{
// Node/CommonJS
factory(require("jquery"), require("datatables"));
}
else if (typeof(jQuery) !== "undefined")
{
factory($, $.fn.dataTable);
}
})();

Loading…
Cancel
Save