Created
May 3, 2016 15:20
-
-
Save Reedyseth/820f0384e9cc582b06810c0dee226cdd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$.extend( DataTable.ext.classes, { | |
"sTable": "dataTable", | |
"sNoFooter": "no-footer", | |
/* Paging buttons */ | |
"sPageButton": "paginate_button", | |
"sPageButtonActive": "current", | |
"sPageButtonDisabled": "disabled", | |
/* Striping classes */ | |
"sStripeOdd": "odd", | |
"sStripeEven": "even", | |
/* Empty row */ | |
"sRowEmpty": "dataTables_empty", | |
/* Features */ | |
"sWrapper": "dataTables_wrapper", | |
"sFilter": "dataTables_filter", | |
"sInfo": "dataTables_info", | |
"sPaging": "dataTables_paginate paging_", /* Note that the type is postfixed */ | |
"sLength": "dataTables_length", | |
"sProcessing": "dataTables_processing", | |
/* Sorting */ | |
"sSortAsc": "sorting_asc", | |
"sSortDesc": "sorting_desc", | |
"sSortable": "sorting", /* Sortable in both directions */ | |
"sSortableAsc": "sorting_asc_disabled", | |
"sSortableDesc": "sorting_desc_disabled", | |
"sSortableNone": "sorting_disabled", | |
"sSortColumn": "sorting_", /* Note that an int is postfixed for the sorting order */ | |
/* Filtering */ | |
"sFilterInput": "", | |
/* Page length */ | |
"sLengthSelect": "", | |
/* Scrolling */ | |
"sScrollWrapper": "dataTables_scroll", | |
"sScrollHead": "dataTables_scrollHead", | |
"sScrollHeadInner": "dataTables_scrollHeadInner", | |
"sScrollBody": "dataTables_scrollBody", | |
"sScrollFoot": "dataTables_scrollFoot", | |
"sScrollFootInner": "dataTables_scrollFootInner", | |
/* Misc */ | |
"sHeaderTH": "", | |
"sFooterTH": "", | |
// Deprecated | |
"sSortJUIAsc": "", | |
"sSortJUIDesc": "", | |
"sSortJUI": "", | |
"sSortJUIAscAllowed": "", | |
"sSortJUIDescAllowed": "", | |
"sSortJUIWrapper": "", | |
"sSortIcon": "", | |
"sJUIHeader": "", | |
"sJUIFooter": "" | |
} ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment