Lines Matching refs:config

157                 if (table.config.debug) {
178 } else if ((table.config.headers[i] && table.config.headers[i].sorter)) {
180 p = getParserById(table.config.headers[i].sorter);
187 if (table.config.debug) {
195 if (table.config.debug) {
211 nodeValue = trimAndGetNodeText(table.config, node);
212 if (table.config.debug) {
232 function trimAndGetNodeText(config, node) { argument
233 return $.trim(getElementText(config, node));
250 if (table.config.debug) {
256 parsers = table.config.parsers,
270 if (c.hasClass(table.config.cssChildRow)) {
279 … cols.push(parsers[j].format(getElementText(table.config, c[0].cells[j]), table, c[0].cells[j]));
287 if (table.config.debug) {
294 function getElementText(config, node) { argument
300 … if (!config.supportsTextContent) config.supportsTextContent = node.textContent || false;
302 if (config.textExtraction == "simple") {
303 if (config.supportsTextContent) {
313 if (typeof(config.textExtraction) == "function") {
314 text = config.textExtraction(node);
324 if (table.config.debug) {
342 if (!table.config.appender) {
356 if (table.config.appender) {
358 table.config.appender(table, rows);
363 if (table.config.debug) {
379 if (table.config.debug) {
387 $tableHeaders = $(table.config.selectorHeaders, table).each(function (index) {
391 this.order = formatSortingOrder(table.config.sortInitialOrder);
400 var $th = $(this).addClass(table.config.cssHeader);
401 if (table.config.onRenderHeader) table.config.onRenderHeader.apply($th);
405 table.config.headerList[index] = this;
408 if (table.config.debug) {
491 if ((table.config.headers[i]) && (table.config.headers[i].sorter === false)) {
498 …if ((table.config.headers[i]) && (table.config.headers[i].lockedOrder)) return table.config.header…
503 var c = table.config.widgets;
557 var c = table.config;
568 var c = table.config,
582 if (table.config.debug) {
600 …var s = (table.config.parsers[c].type == "text") ? ((order == 0) ? makeSortFunction("text", "asc",…
621 if (table.config.debug) {
629 if (table.config.debug) {
667 if (table.config.sortLocaleCompare) return a.localeCompare(b);
672 if (table.config.sortLocaleCompare) return b.localeCompare(a);
701 var $this, $document, $headers, cache, config, shiftDown = 0,
704 this.config = {};
706 config = $.extend(this.config, $.tablesorter.defaults, settings);
710 $.data(this, "tablesorter", config);
714 this.config.parsers = buildParserCache(this, $headers);
718 var sortCSS = [config.cssDesc, config.cssAsc];
742 if (!e[config.sortMultiSortKey]) {
744 config.sortList = [];
745 if (config.sortForce != null) {
746 var a = config.sortForce;
749 config.sortList.push(a[j]);
754 config.sortList.push([i, this.order]);
759 if (isValueInArray(i, config.sortList)) {
762 for (var j = 0; j < config.sortList.length; j++) {
763 var s = config.sortList[j],
764 o = config.headerList[s[0]];
773 config.sortList.push([i, this.order]);
778 setHeadersCss($this[0], $headers, config.sortList, sortCSS);
781 $this[0], config.sortList, cache)
789 if (config.cancelSelection) {
801 me.config.parsers = buildParserCache(
807 var config = this.config;
811 cache.normalized[pos[0]][pos[1]] = config.parsers[pos[1]].format(
812 getElementText(config, cell), cell);
815 config.sortList = list;
817 var sortList = config.sortList;
833 config.sortList = $(this).metadata().sortlist;
836 if (config.sortList.length > 0) {
837 $this.trigger("sorton", [config.sortList]);
866 this.isDigit = function (s, config) { argument
905 var c = table.config;
983 var c = table.config;
1010 var c = table.config,
1019 if (table.config.debug) {
1029 if (!$tr.hasClass(table.config.cssChildRow)) row++;
1032 table.config.widgetZebra.css[odd ? 0 : 1]).addClass(
1033 table.config.widgetZebra.css[odd ? 1 : 0])
1035 if (table.config.debug) {