\"\n };\n return chartServices.renderSplineChart(chartId, data.series, data.chartSettings);\n };\n })(this));\n };\n populateData = function(series, tickInterval, min) {\n var chartSettings, data, dataValue, date, h1, h2, highestValue, i, item, j, k, len, len1, s, utcDate;\n h1 = Math.max.apply(null, _.map(series[0], \"value\"));\n h2 = Math.max.apply(null, _.map(series[1], \"value\"));\n if (h2 > h1) {\n highestValue = h2;\n } else {\n highestValue = h1;\n }\n chartSettings = {\n xAxis: {\n type: \"datetime\"\n },\n yAxis: {\n title: \"\",\n text: \"\",\n tickAmount: 3,\n max: highestValue,\n softMax: highestValue\n }\n };\n item = {\n chartSettings: chartSettings,\n series: [\n {\n name: \"R�ckvidd\",\n data: [],\n point: {\n events: {\n click: function() {}\n }\n }\n }, {\n type: \"spline\",\n name: \"Hel�r\",\n data: []\n }\n ]\n };\n i = 0;\n for (j = 0, len = series.length; j < len; j++) {\n data = series[j];\n for (k = 0, len1 = data.length; k < len1; k++) {\n s = data[k];\n date = new Date(s.date);\n utcDate = Date.UTC(date.getFullYear(), date.getMonth(), date.getDate());\n dataValue = {\n x: utcDate,\n y: s.value,\n source: s.source != null ? s.source : \"Tertial\",\n mediaName: s.mediaName\n };\n item.series[i].data.push(dataValue);\n }\n i++;\n }\n return item;\n };\n return createChart(uri, chartId);\n };\n return {\n executeDigital: executeDigital,\n executePrint: executePrint\n };\n });\n\n}).call(this);\n\n//# sourceMappingURL=reachCharts.js.map\n;\n","(function() {\n define('commons/basicInfoCharts',[\"jquery\", \"commons/chartServices\"], function($, chartServices) {\n var executeAdvertisersChart, executeAgeChart, executeGenderChart;\n executeAdvertisersChart = function(mediaId, cardId, chartId) {\n var calculateAdvertisersData;\n $.ajax({\n url: TSUrl.ApiUrl + \"/Api/Charts/ExpenseBarChartData?mediaId=\" + mediaId,\n dataType: \"jsonp\"\n }).done(function(res) {\n var chartSettings, x;\n if (!((res != null) && res.expenseChartDataPoints.length)) {\n return;\n }\n $(cardId).removeClass(\"hide\");\n x = calculateAdvertisersData(res);\n chartSettings = {\n labelsFormat: \"{point.y:,.0f}\",\n labels: {\n style: {\n fontSize: \"12px\"\n }\n }\n };\n return chartServices.renderBarChart(chartId, x, chartSettings);\n });\n return calculateAdvertisersData = function(x) {\n var d, data, i, item, len, ref, value;\n data = [];\n item = {\n name: \"Annonsvolym brutto (SEK)\",\n colorByPoint: false,\n color: \"#7CB5EC\",\n data: []\n };\n ref = x.expenseChartDataPoints;\n for (i = 0, len = ref.length; i < len; i++) {\n d = ref[i];\n value = {\n name: d.advertiser,\n y: d.value\n };\n item.data.push(value);\n }\n data.push(item);\n return data;\n };\n };\n executeGenderChart = function(mediaId, cardId) {\n var calculateGenderData;\n $.ajax({\n url: TSUrl.ApiUrl + \"/Api/Charts/GenderBarChartData?MediaId=\" + mediaId,\n dataType: \"jsonp\"\n }).done(function(res) {\n var reachText, x;\n if (!((res != null) && res.dataPoints.length)) {\n return;\n }\n $(cardId).removeClass(\"hide\");\n x = calculateGenderData(res);\n if (res.dataPoints[0].surveyName != null) {\n $(\".reach-period\").text(res.dataPoints[0].surveyName);\n $(\".reach-period\").parent().removeClass(\"hide\");\n }\n if (x.totalReach != null) {\n reachText = chartServices.thousandFormat(x.totalReach) + \" - \";\n $(\".media-total-reach\").removeClass(\"hide\").text(reachText);\n }\n $(\"#female-pie\").pieChart({\n barColor: \"#ECBB64\",\n trackColor: \"#f4f5f9\",\n lineCap: \"square\",\n lineWidth: 5,\n rotate: 180,\n percent: x.female,\n onStep: function(from, to, percent) {\n return $(this.element).find(\".pie-value\").html(Math.round(percent) + \"%\");\n }\n });\n return $('#male-pie').pieChart({\n barColor: '#806C83',\n trackColor: '#f4f5f9',\n lineCap: 'square',\n lineWidth: 5,\n rotate: 180,\n percent: x.male,\n onStep: function(from, to, percent) {\n return $(this.element).find(\".pie-value\").html(Math.round(percent) + \"%\");\n }\n });\n });\n return calculateGenderData = function(x) {\n var femalePercentage, femaleReach, malePercentage, maleReach, sum;\n maleReach = x.dataPoints[0].reach;\n femaleReach = x.dataPoints[1].reach;\n sum = maleReach + femaleReach;\n malePercentage = (maleReach / sum) * 100;\n femalePercentage = (femaleReach / sum) * 100;\n return {\n male: malePercentage,\n female: femalePercentage,\n totalReach: x.dataPoints[0].totalReach\n };\n };\n };\n executeAgeChart = function(mediaId, cardId, chartId) {\n var calculateAgeData;\n $.ajax({\n url: TSUrl.ApiUrl + \"/Api/Charts/QuestionBarChartData?MediaId=\" + mediaId + \"&QuestionType=Age\",\n dataType: \"jsonp\"\n }).done(function(res) {\n var chartSettings, x;\n if (!((res != null) && res.dataPoints.length)) {\n return;\n }\n if ($(cardId).length <= 0) {\n return;\n }\n $(cardId).removeClass(\"hide\");\n x = calculateAgeData(res);\n if (res.dataPoints[0].surveyName != null) {\n $(\".reach-period\").text(res.dataPoints[0].surveyName);\n $(\".reach-period\").parent().removeClass(\"hide\");\n }\n chartSettings = {\n labelsFormat: \"{point.y:.0f}%\",\n yAxis: {\n title: false,\n gridLineColor: 'transparent',\n lineWidth: 0,\n minorGridLineWidth: 0,\n lineColor: 'transparent',\n labels: {\n enabled: false\n },\n minorTickLength: 0,\n tickLength: 0\n }\n };\n return chartServices.renderColumnChart(chartId, x, chartSettings);\n });\n return calculateAgeData = function(x) {\n var d, data, i, item, len, ref, sum, value;\n sum = x.dataPoints.reduce((function(total, age) {\n return total + age.reach;\n }), 0);\n data = [];\n item = {\n name: \"Alder\",\n colorByPoint: false,\n color: \"#7CB5EC\",\n data: []\n };\n ref = x.dataPoints.reverse();\n for (i = 0, len = ref.length; i < len; i++) {\n d = ref[i];\n value = {\n name: d.optionName,\n y: (d.reach / sum) * 100\n };\n item.data.push(value);\n }\n data.push(item);\n return data;\n };\n };\n return {\n executeAdvertisersChart: executeAdvertisersChart,\n executeGenderChart: executeGenderChart,\n executeAgeChart: executeAgeChart\n };\n });\n\n}).call(this);\n\n//# sourceMappingURL=basicInfoCharts.js.map\n;\n","/**\r\n * @summary DataTables\r\n * @description Paginate, search and sort HTML tables\r\n * @version 1.9.4\r\n * @file jquery.dataTables.js\r\n * @author Allan Jardine (www.sprymedia.co.uk)\r\n * @contact www.sprymedia.co.uk/contact\r\n *\r\n * @copyright Copyright 2008-2012 Allan Jardine, all rights reserved.\r\n *\r\n * This source file is free software, under either the GPL v2 license or a\r\n * BSD style license, available at:\r\n * http://datatables.net/license_gpl2\r\n * http://datatables.net/license_bsd\r\n *\r\n * This source file is distributed in the hope that it will be useful, but\r\n * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY\r\n * or FITNESS FOR A PARTICULAR PURPOSE. See the license files for details.\r\n *\r\n * For details please refer to: http://www.datatables.net\r\n */\r\n\r\n/*jslint evil: true, undef: true, browser: true */\r\n/*globals $, jQuery,define,_fnExternApiFunc,_fnInitialise,_fnInitComplete,_fnLanguageCompat,_fnAddColumn,_fnColumnOptions,_fnAddData,_fnCreateTr,_fnGatherData,_fnBuildHead,_fnDrawHead,_fnDraw,_fnReDraw,_fnAjaxUpdate,_fnAjaxParameters,_fnAjaxUpdateDraw,_fnServerParams,_fnAddOptionsHtml,_fnFeatureHtmlTable,_fnScrollDraw,_fnAdjustColumnSizing,_fnFeatureHtmlFilter,_fnFilterComplete,_fnFilterCustom,_fnFilterColumn,_fnFilter,_fnBuildSearchArray,_fnBuildSearchRow,_fnFilterCreateSearch,_fnDataToSearch,_fnSort,_fnSortAttachListener,_fnSortingClasses,_fnFeatureHtmlPaginate,_fnPageChange,_fnFeatureHtmlInfo,_fnUpdateInfo,_fnFeatureHtmlLength,_fnFeatureHtmlProcessing,_fnProcessingDisplay,_fnVisibleToColumnIndex,_fnColumnIndexToVisible,_fnNodeToDataIndex,_fnVisbleColumns,_fnCalculateEnd,_fnConvertToWidth,_fnCalculateColumnWidths,_fnScrollingWidthAdjust,_fnGetWidestNode,_fnGetMaxLenString,_fnStringToCss,_fnDetectType,_fnSettingsFromNode,_fnGetDataMaster,_fnGetTrNodes,_fnGetTdNodes,_fnEscapeRegex,_fnDeleteIndex,_fnReOrderIndex,_fnColumnOrdering,_fnLog,_fnClearTable,_fnSaveState,_fnLoadState,_fnCreateCookie,_fnReadCookie,_fnDetectHeader,_fnGetUniqueThs,_fnScrollBarWidth,_fnApplyToChildren,_fnMap,_fnGetRowData,_fnGetCellData,_fnSetCellData,_fnGetObjectDataFn,_fnSetObjectDataFn,_fnApplyColumnDefs,_fnBindAction,_fnCallbackReg,_fnCallbackFire,_fnJsonString,_fnRender,_fnNodeToColumnIndex,_fnInfoMacros,_fnBrowserDetect,_fnGetColumns*/\r\n\r\n(/** @lends */function( window, document, undefined ) {\r\n\r\n\t(function( factory ) {\r\n\t\t\"use strict\";\r\n\r\n\t\t// Define as an AMD module if possible\r\n\t\tif ( typeof define === 'function' && define.amd )\r\n\t\t{\r\n\t\t\tdefine( 'dataTables',['jquery'], factory );\r\n\t\t}\r\n\t\t/* Define using browser globals otherwise\r\n\t\t * Prevent multiple instantiations if the script is loaded twice\r\n\t\t */\r\n\t\telse if ( jQuery && !jQuery.fn.dataTable )\r\n\t\t{\r\n\t\t\tfactory( jQuery );\r\n\t\t}\r\n\t}\r\n\t(/** @lends */function( $ ) {\r\n\t\t\"use strict\";\r\n\t\t/**\r\n\t\t * DataTables is a plug-in for the jQuery Javascript library. It is a\r\n\t\t * highly flexible tool, based upon the foundations of progressive\r\n\t\t * enhancement, which will add advanced interaction controls to any\r\n\t\t * HTML table. For a full list of features please refer to\r\n\t\t * DataTables.net.\r\n\t\t *\r\n\t\t * Note that the DataTable object is not a global variable but is\r\n\t\t * aliased to jQuery.fn.DataTable and jQuery.fn.dataTable through which\r\n\t\t * it may be accessed.\r\n\t\t *\r\n\t\t * @class\r\n\t\t * @param {object} [oInit={}] Configuration object for DataTables. Options\r\n\t\t * are defined by {@link DataTable.defaults}\r\n\t\t * @requires jQuery 1.3+\r\n\t\t *\r\n\t\t * @example\r\n\t\t * // Basic initialisation\r\n\t\t * $(document).ready( function {\r\n\t * $('#example').dataTable();\r\n\t * } );\r\n\t\t *\r\n\t\t * @example\r\n\t\t * // Initialisation with configuration options - in this case, disable\r\n\t\t * // pagination and sorting.\r\n\t\t * $(document).ready( function {\r\n\t * $('#example').dataTable( {\r\n\t * \"bPaginate\": false,\r\n\t * \"bSort\": false \r\n\t * } );\r\n\t * } );\r\n\t\t */\r\n\t\tvar DataTable = function( oInit )\r\n\t\t{\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Add a column to the list used for the table with default values\r\n\t\t\t * @param {object} oSettings dataTables settings object\r\n\t\t\t * @param {node} nTh The th element for this column\r\n\t\t\t * @memberof DataTable#oApi\r\n\t\t\t */\r\n\t\t\tfunction _fnAddColumn( oSettings, nTh )\r\n\t\t\t{\r\n\t\t\t\tvar oDefaults = DataTable.defaults.columns;\r\n\t\t\t\tvar iCol = oSettings.aoColumns.length;\r\n\t\t\t\tvar oCol = $.extend( {}, DataTable.models.oColumn, oDefaults, {\r\n\t\t\t\t\t\"sSortingClass\": oSettings.oClasses.sSortable,\r\n\t\t\t\t\t\"sSortingClassJUI\": oSettings.oClasses.sSortJUI,\r\n\t\t\t\t\t\"nTh\": nTh ? nTh : document.createElement('th'),\r\n\t\t\t\t\t\"sTitle\": oDefaults.sTitle ? oDefaults.sTitle : nTh ? nTh.innerHTML : '',\r\n\t\t\t\t\t\"aDataSort\": oDefaults.aDataSort ? oDefaults.aDataSort : [iCol],\r\n\t\t\t\t\t\"mData\": oDefaults.mData ? oDefaults.oDefaults : iCol\r\n\t\t\t\t} );\r\n\t\t\t\toSettings.aoColumns.push( oCol );\r\n\r\n\t\t\t\t/* Add a column specific filter */\r\n\t\t\t\tif ( oSettings.aoPreSearchCols[ iCol ] === undefined || oSettings.aoPreSearchCols[ iCol ] === null )\r\n\t\t\t\t{\r\n\t\t\t\t\toSettings.aoPreSearchCols[ iCol ] = $.extend( {}, DataTable.models.oSearch );\r\n\t\t\t\t}\r\n\t\t\t\telse\r\n\t\t\t\t{\r\n\t\t\t\t\tvar oPre = oSettings.aoPreSearchCols[ iCol ];\r\n\r\n\t\t\t\t\t/* Don't require that the user must specify bRegex, bSmart or bCaseInsensitive */\r\n\t\t\t\t\tif ( oPre.bRegex === undefined )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\toPre.bRegex = true;\r\n\t\t\t\t\t}\r\n\r\n\t\t\t\t\tif ( oPre.bSmart === undefined )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\toPre.bSmart = true;\r\n\t\t\t\t\t}\r\n\r\n\t\t\t\t\tif ( oPre.bCaseInsensitive === undefined )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\toPre.bCaseInsensitive = true;\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\r\n\t\t\t\t/* Use the column options function to initialise classes etc */\r\n\t\t\t\t_fnColumnOptions( oSettings, iCol, null );\r\n\t\t\t}\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Apply options for a column\r\n\t\t\t * @param {object} oSettings dataTables settings object\r\n\t\t\t * @param {int} iCol column index to consider\r\n\t\t\t * @param {object} oOptions object with sType, bVisible and bSearchable etc\r\n\t\t\t * @memberof DataTable#oApi\r\n\t\t\t */\r\n\t\t\tfunction _fnColumnOptions( oSettings, iCol, oOptions )\r\n\t\t\t{\r\n\t\t\t\tvar oCol = oSettings.aoColumns[ iCol ];\r\n\r\n\t\t\t\t/* User specified column options */\r\n\t\t\t\tif ( oOptions !== undefined && oOptions !== null )\r\n\t\t\t\t{\r\n\t\t\t\t\t/* Backwards compatibility for mDataProp */\r\n\t\t\t\t\tif ( oOptions.mDataProp && !oOptions.mData )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\toOptions.mData = oOptions.mDataProp;\r\n\t\t\t\t\t}\r\n\r\n\t\t\t\t\tif ( oOptions.sType !== undefined )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\toCol.sType = oOptions.sType;\r\n\t\t\t\t\t\toCol._bAutoType = false;\r\n\t\t\t\t\t}\r\n\r\n\t\t\t\t\t$.extend( oCol, oOptions );\r\n\t\t\t\t\t_fnMap( oCol, oOptions, \"sWidth\", \"sWidthOrig\" );\r\n\r\n\t\t\t\t\t/* iDataSort to be applied (backwards compatibility), but aDataSort will take\r\n\t\t\t\t\t * priority if defined\r\n\t\t\t\t\t */\r\n\t\t\t\t\tif ( oOptions.iDataSort !== undefined )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\toCol.aDataSort = [ oOptions.iDataSort ];\r\n\t\t\t\t\t}\r\n\t\t\t\t\t_fnMap( oCol, oOptions, \"aDataSort\" );\r\n\t\t\t\t}\r\n\r\n\t\t\t\t/* Cache the data get and set functions for speed */\r\n\t\t\t\tvar mRender = oCol.mRender ? _fnGetObjectDataFn( oCol.mRender ) : null;\r\n\t\t\t\tvar mData = _fnGetObjectDataFn( oCol.mData );\r\n\r\n\t\t\t\toCol.fnGetData = function (oData, sSpecific) {\r\n\t\t\t\t\tvar innerData = mData( oData, sSpecific );\r\n\r\n\t\t\t\t\tif ( oCol.mRender && (sSpecific && sSpecific !== '') )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\treturn mRender( innerData, sSpecific, oData );\r\n\t\t\t\t\t}\r\n\t\t\t\t\treturn innerData;\r\n\t\t\t\t};\r\n\t\t\t\toCol.fnSetData = _fnSetObjectDataFn( oCol.mData );\r\n\r\n\t\t\t\t/* Feature sorting overrides column specific when off */\r\n\t\t\t\tif ( !oSettings.oFeatures.bSort )\r\n\t\t\t\t{\r\n\t\t\t\t\toCol.bSortable = false;\r\n\t\t\t\t}\r\n\r\n\t\t\t\t/* Check that the class assignment is correct for sorting */\r\n\t\t\t\tif ( !oCol.bSortable ||\r\n\t\t\t\t\t($.inArray('asc', oCol.asSorting) == -1 && $.inArray('desc', oCol.asSorting) == -1) )\r\n\t\t\t\t{\r\n\t\t\t\t\toCol.sSortingClass = oSettings.oClasses.sSortableNone;\r\n\t\t\t\t\toCol.sSortingClassJUI = \"\";\r\n\t\t\t\t}\r\n\t\t\t\telse if ( $.inArray('asc', oCol.asSorting) == -1 && $.inArray('desc', oCol.asSorting) == -1 )\r\n\t\t\t\t{\r\n\t\t\t\t\toCol.sSortingClass = oSettings.oClasses.sSortable;\r\n\t\t\t\t\toCol.sSortingClassJUI = oSettings.oClasses.sSortJUI;\r\n\t\t\t\t}\r\n\t\t\t\telse if ( $.inArray('asc', oCol.asSorting) != -1 && $.inArray('desc', oCol.asSorting) == -1 )\r\n\t\t\t\t{\r\n\t\t\t\t\toCol.sSortingClass = oSettings.oClasses.sSortableAsc;\r\n\t\t\t\t\toCol.sSortingClassJUI = oSettings.oClasses.sSortJUIAscAllowed;\r\n\t\t\t\t}\r\n\t\t\t\telse if ( $.inArray('asc', oCol.asSorting) == -1 && $.inArray('desc', oCol.asSorting) != -1 )\r\n\t\t\t\t{\r\n\t\t\t\t\toCol.sSortingClass = oSettings.oClasses.sSortableDesc;\r\n\t\t\t\t\toCol.sSortingClassJUI = oSettings.oClasses.sSortJUIDescAllowed;\r\n\t\t\t\t}\r\n\t\t\t}\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Adjust the table column widths for new data. Note: you would probably want to\r\n\t\t\t * do a redraw after calling this function!\r\n\t\t\t * @param {object} oSettings dataTables settings object\r\n\t\t\t * @memberof DataTable#oApi\r\n\t\t\t */\r\n\t\t\tfunction _fnAdjustColumnSizing ( oSettings )\r\n\t\t\t{\r\n\t\t\t\t/* Not interested in doing column width calculation if auto-width is disabled */\r\n\t\t\t\tif ( oSettings.oFeatures.bAutoWidth === false )\r\n\t\t\t\t{\r\n\t\t\t\t\treturn false;\r\n\t\t\t\t}\r\n\r\n\t\t\t\t_fnCalculateColumnWidths( oSettings );\r\n\t\t\t\tfor ( var i=0 , iLen=oSettings.aoColumns.length ; i=0 ; i-- )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t/* Each definition can target multiple columns, as it is an array */\r\n\t\t\t\t\t\tvar aTargets = aoColDefs[i].aTargets;\r\n\t\t\t\t\t\tif ( !$.isArray( aTargets ) )\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t_fnLog( oSettings, 1, 'aTargets must be an array of targets, not a '+(typeof aTargets) );\r\n\t\t\t\t\t\t}\r\n\r\n\t\t\t\t\t\tfor ( j=0, jLen=aTargets.length ; j= 0 )\r\n\t\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\t/* Add columns that we don't yet know about */\r\n\t\t\t\t\t\t\t\twhile( oSettings.aoColumns.length <= aTargets[j] )\r\n\t\t\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\t\t_fnAddColumn( oSettings );\r\n\t\t\t\t\t\t\t\t}\r\n\r\n\t\t\t\t\t\t\t\t/* Integer, basic index */\r\n\t\t\t\t\t\t\t\tfn( aTargets[j], aoColDefs[i] );\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\telse if ( typeof aTargets[j] === 'number' && aTargets[j] < 0 )\r\n\t\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\t/* Negative integer, right to left column counting */\r\n\t\t\t\t\t\t\t\tfn( oSettings.aoColumns.length+aTargets[j], aoColDefs[i] );\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\telse if ( typeof aTargets[j] === 'string' )\r\n\t\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\t/* Class name matching on TH element */\r\n\t\t\t\t\t\t\t\tfor ( k=0, kLen=oSettings.aoColumns.length ; k=0 if successful (index of new aoData entry), -1 if failed\r\n\t\t\t * @memberof DataTable#oApi\r\n\t\t\t */\r\n\t\t\tfunction _fnAddData ( oSettings, aDataSupplied )\r\n\t\t\t{\r\n\t\t\t\tvar oCol;\r\n\r\n\t\t\t\t/* Take an independent copy of the data source so we can bash it about as we wish */\r\n\t\t\t\tvar aDataIn = ($.isArray(aDataSupplied)) ?\r\n\t\t\t\t\taDataSupplied.slice() :\r\n\t\t\t\t\t$.extend( true, {}, aDataSupplied );\r\n\r\n\t\t\t\t/* Create the object for storing information about this new row */\r\n\t\t\t\tvar iRow = oSettings.aoData.length;\r\n\t\t\t\tvar oData = $.extend( true, {}, DataTable.models.oRow );\r\n\t\t\t\toData._aData = aDataIn;\r\n\t\t\t\toSettings.aoData.push( oData );\r\n\r\n\t\t\t\t/* Create the cells */\r\n\t\t\t\tvar nTd, sThisType;\r\n\t\t\t\tfor ( var i=0, iLen=oSettings.aoColumns.length ; i iTarget )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\ta[i]--;\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\r\n\t\t\t\tif ( iTargetIndex != -1 )\r\n\t\t\t\t{\r\n\t\t\t\t\ta.splice( iTargetIndex, 1 );\r\n\t\t\t\t}\r\n\t\t\t}\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Call the developer defined fnRender function for a given cell (row/column) with\r\n\t\t\t * the required parameters and return the result.\r\n\t\t\t * @param {object} oSettings dataTables settings object\r\n\t\t\t * @param {int} iRow aoData index for the row\r\n\t\t\t * @param {int} iCol aoColumns index for the column\r\n\t\t\t * @returns {*} Return of the developer's fnRender function\r\n\t\t\t * @memberof DataTable#oApi\r\n\t\t\t */\r\n\t\t\tfunction _fnRender( oSettings, iRow, iCol )\r\n\t\t\t{\r\n\t\t\t\tvar oCol = oSettings.aoColumns[iCol];\r\n\r\n\t\t\t\treturn oCol.fnRender( {\r\n\t\t\t\t\t\"iDataRow\": iRow,\r\n\t\t\t\t\t\"iDataColumn\": iCol,\r\n\t\t\t\t\t\"oSettings\": oSettings,\r\n\t\t\t\t\t\"aData\": oSettings.aoData[iRow]._aData,\r\n\t\t\t\t\t\"mDataProp\": oCol.mData\r\n\t\t\t\t}, _fnGetCellData(oSettings, iRow, iCol, 'display') );\r\n\t\t\t}\r\n\t\t\t/**\r\n\t\t\t * Create a new TR element (and it's TD children) for a row\r\n\t\t\t * @param {object} oSettings dataTables settings object\r\n\t\t\t * @param {int} iRow Row to consider\r\n\t\t\t * @memberof DataTable#oApi\r\n\t\t\t */\r\n\t\t\tfunction _fnCreateTr ( oSettings, iRow )\r\n\t\t\t{\r\n\t\t\t\tvar oData = oSettings.aoData[iRow];\r\n\t\t\t\tvar nTd;\r\n\r\n\t\t\t\tif ( oData.nTr === null )\r\n\t\t\t\t{\r\n\t\t\t\t\toData.nTr = document.createElement('tr');\r\n\r\n\t\t\t\t\t/* Use a private property on the node to allow reserve mapping from the node\r\n\t\t\t\t\t * to the aoData array for fast look up\r\n\t\t\t\t\t */\r\n\t\t\t\t\toData.nTr._DT_RowIndex = iRow;\r\n\r\n\t\t\t\t\t/* Special parameters can be given by the data source to be used on the row */\r\n\t\t\t\t\tif ( oData._aData.DT_RowId )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\toData.nTr.id = oData._aData.DT_RowId;\r\n\t\t\t\t\t}\r\n\r\n\t\t\t\t\tif ( oData._aData.DT_RowClass )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\toData.nTr.className = oData._aData.DT_RowClass;\r\n\t\t\t\t\t}\r\n\r\n\t\t\t\t\t/* Process each column */\r\n\t\t\t\t\tfor ( var i=0, iLen=oSettings.aoColumns.length ; i=0 ; j-- )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\tif ( !oSettings.aoColumns[j].bVisible && !bIncludeHidden )\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\taoLocal[i].splice( j, 1 );\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\r\n\t\t\t\t\t/* Prep the applied array - it needs an element for each row */\r\n\t\t\t\t\taApplied.push( [] );\r\n\t\t\t\t}\r\n\r\n\t\t\t\tfor ( i=0, iLen=aoLocal.length ; i= oSettings.fnRecordsDisplay()) ?\r\n\t\t\t\t\t\t\t0 : oSettings.iInitDisplayStart;\r\n\t\t\t\t\t}\r\n\t\t\t\t\toSettings.iInitDisplayStart = -1;\r\n\t\t\t\t\t_fnCalculateEnd( oSettings );\r\n\t\t\t\t}\r\n\r\n\t\t\t\t/* Server-side processing draw intercept */\r\n\t\t\t\tif ( oSettings.bDeferLoading )\r\n\t\t\t\t{\r\n\t\t\t\t\toSettings.bDeferLoading = false;\r\n\t\t\t\t\toSettings.iDraw++;\r\n\t\t\t\t}\r\n\t\t\t\telse if ( !oSettings.oFeatures.bServerSide )\r\n\t\t\t\t{\r\n\t\t\t\t\toSettings.iDraw++;\r\n\t\t\t\t}\r\n\t\t\t\telse if ( !oSettings.bDestroying && !_fnAjaxUpdate( oSettings ) )\r\n\t\t\t\t{\r\n\t\t\t\t\treturn;\r\n\t\t\t\t}\r\n\r\n\t\t\t\tif ( oSettings.aiDisplay.length !== 0 )\r\n\t\t\t\t{\r\n\t\t\t\t\tvar iStart = oSettings._iDisplayStart;\r\n\t\t\t\t\tvar iEnd = oSettings._iDisplayEnd;\r\n\r\n\t\t\t\t\tif ( oSettings.oFeatures.bServerSide )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\tiStart = 0;\r\n\t\t\t\t\t\tiEnd = oSettings.aoData.length;\r\n\t\t\t\t\t}\r\n\r\n\t\t\t\t\tfor ( var j=iStart ; j')[0];\r\n\t\t\t\toSettings.nTable.parentNode.insertBefore( nHolding, oSettings.nTable );\r\n\r\n\t\t\t\t/* \r\n\t\t\t\t * All DataTables are wrapped in a div\r\n\t\t\t\t */\r\n\t\t\t\toSettings.nTableWrapper = $('')[0];\r\n\t\t\t\toSettings.nTableReinsertBefore = oSettings.nTable.nextSibling;\r\n\r\n\t\t\t\t/* Track where we want to insert the option */\r\n\t\t\t\tvar nInsertNode = oSettings.nTableWrapper;\r\n\r\n\t\t\t\t/* Loop over the user set positioning and place the elements as needed */\r\n\t\t\t\tvar aDom = oSettings.sDom.split('');\r\n\t\t\t\tvar nTmp, iPushFeature, cOption, nNewNode, cNext, sAttr, j;\r\n\t\t\t\tfor ( var i=0 ; i')[0];\r\n\r\n\t\t\t\t\t\t/* Check to see if we should append an id and/or a class name to the container */\r\n\t\t\t\t\t\tcNext = aDom[i+1];\r\n\t\t\t\t\t\tif ( cNext == \"'\" || cNext == '\"' )\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\tsAttr = \"\";\r\n\t\t\t\t\t\t\tj = 2;\r\n\t\t\t\t\t\t\twhile ( aDom[i+j] != cNext )\r\n\t\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\tsAttr += aDom[i+j];\r\n\t\t\t\t\t\t\t\tj++;\r\n\t\t\t\t\t\t\t}\r\n\r\n\t\t\t\t\t\t\t/* Replace jQuery UI constants */\r\n\t\t\t\t\t\t\tif ( sAttr == \"H\" )\r\n\t\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\tsAttr = oSettings.oClasses.sJUIHeader;\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\telse if ( sAttr == \"F\" )\r\n\t\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\tsAttr = oSettings.oClasses.sJUIFooter;\r\n\t\t\t\t\t\t\t}\r\n\r\n\t\t\t\t\t\t\t/* The attribute can be in the format of \"#id.class\", \"#id\" or \"class\" This logic\r\n\t\t\t\t\t\t\t * breaks the string into parts and applies them as needed\r\n\t\t\t\t\t\t\t */\r\n\t\t\t\t\t\t\tif ( sAttr.indexOf('.') != -1 )\r\n\t\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\tvar aSplit = sAttr.split('.');\r\n\t\t\t\t\t\t\t\tnNewNode.id = aSplit[0].substr(1, aSplit[0].length-1);\r\n\t\t\t\t\t\t\t\tnNewNode.className = aSplit[1];\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\telse if ( sAttr.charAt(0) == \"#\" )\r\n\t\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\tnNewNode.id = sAttr.substr(1, sAttr.length-1);\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\telse\r\n\t\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\tnNewNode.className = sAttr;\r\n\t\t\t\t\t\t\t}\r\n\r\n\t\t\t\t\t\t\ti += j; /* Move along the position array */\r\n\t\t\t\t\t\t}\r\n\r\n\t\t\t\t\t\tnInsertNode.appendChild( nNewNode );\r\n\t\t\t\t\t\tnInsertNode = nNewNode;\r\n\t\t\t\t\t}\r\n\t\t\t\t\telse if ( cOption == '>' )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t/* End container div */\r\n\t\t\t\t\t\tnInsertNode = nInsertNode.parentNode;\r\n\t\t\t\t\t}\r\n\t\t\t\t\telse if ( cOption == 'l' && oSettings.oFeatures.bPaginate && oSettings.oFeatures.bLengthChange )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t/* Length */\r\n\t\t\t\t\t\tnTmp = _fnFeatureHtmlLength( oSettings );\r\n\t\t\t\t\t\tiPushFeature = 1;\r\n\t\t\t\t\t}\r\n\t\t\t\t\telse if ( cOption == 'f' && oSettings.oFeatures.bFilter )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t/* Filter */\r\n\t\t\t\t\t\tnTmp = _fnFeatureHtmlFilter( oSettings );\r\n\t\t\t\t\t\tiPushFeature = 1;\r\n\t\t\t\t\t}\r\n\t\t\t\t\telse if ( cOption == 'r' && oSettings.oFeatures.bProcessing )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t/* pRocessing */\r\n\t\t\t\t\t\tnTmp = _fnFeatureHtmlProcessing( oSettings );\r\n\t\t\t\t\t\tiPushFeature = 1;\r\n\t\t\t\t\t}\r\n\t\t\t\t\telse if ( cOption == 't' )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t/* Table */\r\n\t\t\t\t\t\tnTmp = _fnFeatureHtmlTable( oSettings );\r\n\t\t\t\t\t\tiPushFeature = 1;\r\n\t\t\t\t\t}\r\n\t\t\t\t\telse if ( cOption == 'i' && oSettings.oFeatures.bInfo )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t/* Info */\r\n\t\t\t\t\t\tnTmp = _fnFeatureHtmlInfo( oSettings );\r\n\t\t\t\t\t\tiPushFeature = 1;\r\n\t\t\t\t\t}\r\n\t\t\t\t\telse if ( cOption == 'p' && oSettings.oFeatures.bPaginate )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t/* Pagination */\r\n\t\t\t\t\t\tnTmp = _fnFeatureHtmlPaginate( oSettings );\r\n\t\t\t\t\t\tiPushFeature = 1;\r\n\t\t\t\t\t}\r\n\t\t\t\t\telse if ( DataTable.ext.aoFeatures.length !== 0 )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t/* Plug-in features */\r\n\t\t\t\t\t\tvar aoFeatures = DataTable.ext.aoFeatures;\r\n\t\t\t\t\t\tfor ( var k=0, kLen=aoFeatures.length ; k') :\r\n\t\t\t\t\tsSearchStr===\"\" ? '' : sSearchStr+' ';\r\n\r\n\t\t\t\tvar nFilter = document.createElement( 'div' );\r\n\t\t\t\tnFilter.className = oSettings.oClasses.sFilter;\r\n\t\t\t\tnFilter.innerHTML = '';\r\n\t\t\t\tif ( !oSettings.aanFeatures.f )\r\n\t\t\t\t{\r\n\t\t\t\t\tnFilter.id = oSettings.sTableId+'_filter';\r\n\t\t\t\t}\r\n\r\n\t\t\t\tvar jqFilter = $('input[type=\"text\"]', nFilter);\r\n\r\n\t\t\t\t// Store a reference to the input element, so other input elements could be\r\n\t\t\t\t// added to the filter wrapper if needed (submit button for example)\r\n\t\t\t\tnFilter._DT_Input = jqFilter[0];\r\n\r\n\t\t\t\tjqFilter.val( oPreviousSearch.sSearch.replace('\"','"') );\r\n\t\t\t\tjqFilter.bind( 'keyup.DT', function(e) {\r\n\t\t\t\t\t/* Update all other filter input elements for the new display */\r\n\t\t\t\t\tvar n = oSettings.aanFeatures.f;\r\n\t\t\t\t\tvar val = this.value===\"\" ? \"\" : this.value; // mental IE8 fix :-(\r\n\r\n\t\t\t\t\tfor ( var i=0, iLen=n.length ; i=0 ; i-- )\r\n\t\t\t\t{\r\n\t\t\t\t\tvar sData = _fnDataToSearch( _fnGetCellData( oSettings, oSettings.aiDisplay[i], iColumn, 'filter' ),\r\n\t\t\t\t\t\toSettings.aoColumns[iColumn].sType );\r\n\t\t\t\t\tif ( ! rpSearch.test( sData ) )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\toSettings.aiDisplay.splice( i, 1 );\r\n\t\t\t\t\t\tiIndexCorrector++;\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t}\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Filter the data table based on user input and draw the table\r\n\t\t\t * @param {object} oSettings dataTables settings object\r\n\t\t\t * @param {string} sInput string to filter on\r\n\t\t\t * @param {int} iForce optional - force a research of the master array (1) or not (undefined or 0)\r\n\t\t\t * @param {bool} bRegex treat as a regular expression or not\r\n\t\t\t * @param {bool} bSmart perform smart filtering or not\r\n\t\t\t * @param {bool} bCaseInsensitive Do case insenstive matching or not\r\n\t\t\t * @memberof DataTable#oApi\r\n\t\t\t */\r\n\t\t\tfunction _fnFilter( oSettings, sInput, iForce, bRegex, bSmart, bCaseInsensitive )\r\n\t\t\t{\r\n\t\t\t\tvar i;\r\n\t\t\t\tvar rpSearch = _fnFilterCreateSearch( sInput, bRegex, bSmart, bCaseInsensitive );\r\n\t\t\t\tvar oPrevSearch = oSettings.oPreviousSearch;\r\n\r\n\t\t\t\t/* Check if we are forcing or not - optional parameter */\r\n\t\t\t\tif ( !iForce )\r\n\t\t\t\t{\r\n\t\t\t\t\tiForce = 0;\r\n\t\t\t\t}\r\n\r\n\t\t\t\t/* Need to take account of custom filtering functions - always filter */\r\n\t\t\t\tif ( DataTable.ext.afnFiltering.length !== 0 )\r\n\t\t\t\t{\r\n\t\t\t\t\tiForce = 1;\r\n\t\t\t\t}\r\n\r\n\t\t\t\t/*\r\n\t\t\t\t * If the input is blank - we want the full data set\r\n\t\t\t\t */\r\n\t\t\t\tif ( sInput.length <= 0 )\r\n\t\t\t\t{\r\n\t\t\t\t\toSettings.aiDisplay.splice( 0, oSettings.aiDisplay.length);\r\n\t\t\t\t\toSettings.aiDisplay = oSettings.aiDisplayMaster.slice();\r\n\t\t\t\t}\r\n\t\t\t\telse\r\n\t\t\t\t{\r\n\t\t\t\t\t/*\r\n\t\t\t\t\t * We are starting a new search or the new search string is smaller \r\n\t\t\t\t\t * then the old one (i.e. delete). Search from the master array\r\n\t\t\t\t\t */\r\n\t\t\t\t\tif ( oSettings.aiDisplay.length == oSettings.aiDisplayMaster.length ||\r\n\t\t\t\t\t\toPrevSearch.sSearch.length > sInput.length || iForce == 1 ||\r\n\t\t\t\t\t\tsInput.indexOf(oPrevSearch.sSearch) !== 0 )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t/* Nuke the old display array - we are going to rebuild it */\r\n\t\t\t\t\t\toSettings.aiDisplay.splice( 0, oSettings.aiDisplay.length);\r\n\r\n\t\t\t\t\t\t/* Force a rebuild of the search array */\r\n\t\t\t\t\t\t_fnBuildSearchArray( oSettings, 1 );\r\n\r\n\t\t\t\t\t\t/* Search through all records to populate the search array\r\n\t\t\t\t\t\t * The the oSettings.aiDisplayMaster and asDataSearch arrays have 1 to 1 \r\n\t\t\t\t\t\t * mapping\r\n\t\t\t\t\t\t */\r\n\t\t\t\t\t\tfor ( i=0 ; i').html(sSearch).text();\r\n\t\t\t\t}\r\n\r\n\t\t\t\t// Strip newline characters\r\n\t\t\t\treturn sSearch.replace( /[\\n\\r]/g, \" \" );\r\n\t\t\t}\r\n\r\n\t\t\t/**\r\n\t\t\t * Build a regular expression object suitable for searching a table\r\n\t\t\t * @param {string} sSearch string to search for\r\n\t\t\t * @param {bool} bRegex treat as a regular expression or not\r\n\t\t\t * @param {bool} bSmart perform smart filtering or not\r\n\t\t\t * @param {bool} bCaseInsensitive Do case insensitive matching or not\r\n\t\t\t * @returns {RegExp} constructed object\r\n\t\t\t * @memberof DataTable#oApi\r\n\t\t\t */\r\n\t\t\tfunction _fnFilterCreateSearch( sSearch, bRegex, bSmart, bCaseInsensitive )\r\n\t\t\t{\r\n\t\t\t\tvar asSearch, sRegExpString;\r\n\r\n\t\t\t\tif ( bSmart )\r\n\t\t\t\t{\r\n\t\t\t\t\t/* Generate the regular expression to use. Something along the lines of:\r\n\t\t\t\t\t * ^(?=.*?\\bone\\b)(?=.*?\\btwo\\b)(?=.*?\\bthree\\b).*$\r\n\t\t\t\t\t */\r\n\t\t\t\t\tasSearch = bRegex ? sSearch.split( ' ' ) : _fnEscapeRegex( sSearch ).split( ' ' );\r\n\t\t\t\t\tsRegExpString = '^(?=.*?'+asSearch.join( ')(?=.*?' )+').*$';\r\n\t\t\t\t\treturn new RegExp( sRegExpString, bCaseInsensitive ? \"i\" : \"\" );\r\n\t\t\t\t}\r\n\t\t\t\telse\r\n\t\t\t\t{\r\n\t\t\t\t\tsSearch = bRegex ? sSearch : _fnEscapeRegex( sSearch );\r\n\t\t\t\t\treturn new RegExp( sSearch, bCaseInsensitive ? \"i\" : \"\" );\r\n\t\t\t\t}\r\n\t\t\t}\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Convert raw data into something that the user can search on\r\n\t\t\t * @param {string} sData data to be modified\r\n\t\t\t * @param {string} sType data type\r\n\t\t\t * @returns {string} search string\r\n\t\t\t * @memberof DataTable#oApi\r\n\t\t\t */\r\n\t\t\tfunction _fnDataToSearch ( sData, sType )\r\n\t\t\t{\r\n\t\t\t\tif ( typeof DataTable.ext.ofnSearch[sType] === \"function\" )\r\n\t\t\t\t{\r\n\t\t\t\t\treturn DataTable.ext.ofnSearch[sType]( sData );\r\n\t\t\t\t}\r\n\t\t\t\telse if ( sData === null )\r\n\t\t\t\t{\r\n\t\t\t\t\treturn '';\r\n\t\t\t\t}\r\n\t\t\t\telse if ( sType == \"html\" )\r\n\t\t\t\t{\r\n\t\t\t\t\treturn sData.replace(/[\\r\\n]/g,\" \").replace( /<.*?>/g, \"\" );\r\n\t\t\t\t}\r\n\t\t\t\telse if ( typeof sData === \"string\" )\r\n\t\t\t\t{\r\n\t\t\t\t\treturn sData.replace(/[\\r\\n]/g,\" \");\r\n\t\t\t\t}\r\n\t\t\t\treturn sData;\r\n\t\t\t}\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * scape a string such that it can be used in a regular expression\r\n\t\t\t * @param {string} sVal string to escape\r\n\t\t\t * @returns {string} escaped string\r\n\t\t\t * @memberof DataTable#oApi\r\n\t\t\t */\r\n\t\t\tfunction _fnEscapeRegex ( sVal )\r\n\t\t\t{\r\n\t\t\t\tvar acEscape = [ '/', '.', '*', '+', '?', '|', '(', ')', '[', ']', '{', '}', '\\\\', '$', '^', '-' ];\r\n\t\t\t\tvar reReplace = new RegExp( '(\\\\' + acEscape.join('|\\\\') + ')', 'g' );\r\n\t\t\t\treturn sVal.replace(reReplace, '\\\\$1');\r\n\t\t\t}\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Generate the node required for the info display\r\n\t\t\t * @param {object} oSettings dataTables settings object\r\n\t\t\t * @returns {node} Information element\r\n\t\t\t * @memberof DataTable#oApi\r\n\t\t\t */\r\n\t\t\tfunction _fnFeatureHtmlInfo ( oSettings )\r\n\t\t\t{\r\n\t\t\t\tvar nInfo = document.createElement( 'div' );\r\n\t\t\t\tnInfo.className = oSettings.oClasses.sInfo;\r\n\r\n\t\t\t\t/* Actions that are to be taken once only for this feature */\r\n\t\t\t\tif ( !oSettings.aanFeatures.i )\r\n\t\t\t\t{\r\n\t\t\t\t\t/* Add draw callback */\r\n\t\t\t\t\toSettings.aoDrawCallback.push( {\r\n\t\t\t\t\t\t\"fn\": _fnUpdateInfo,\r\n\t\t\t\t\t\t\"sName\": \"information\"\r\n\t\t\t\t\t} );\r\n\r\n\t\t\t\t\t/* Add id */\r\n\t\t\t\t\tnInfo.id = oSettings.sTableId+'_info';\r\n\t\t\t\t}\r\n\t\t\t\toSettings.nTable.setAttribute( 'aria-describedby', oSettings.sTableId+'_info' );\r\n\r\n\t\t\t\treturn nInfo;\r\n\t\t\t}\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Update the information elements in the display\r\n\t\t\t * @param {object} oSettings dataTables settings object\r\n\t\t\t * @memberof DataTable#oApi\r\n\t\t\t */\r\n\t\t\tfunction _fnUpdateInfo ( oSettings )\r\n\t\t\t{\r\n\t\t\t\t/* Show information about the table */\r\n\t\t\t\tif ( !oSettings.oFeatures.bInfo || oSettings.aanFeatures.i.length === 0 )\r\n\t\t\t\t{\r\n\t\t\t\t\treturn;\r\n\t\t\t\t}\r\n\r\n\t\t\t\tvar\r\n\t\t\t\t\toLang = oSettings.oLanguage,\r\n\t\t\t\t\tiStart = oSettings._iDisplayStart+1,\r\n\t\t\t\t\tiEnd = oSettings.fnDisplayEnd(),\r\n\t\t\t\t\tiMax = oSettings.fnRecordsTotal(),\r\n\t\t\t\t\tiTotal = oSettings.fnRecordsDisplay(),\r\n\t\t\t\t\tsOut;\r\n\r\n\t\t\t\tif ( iTotal === 0 )\r\n\t\t\t\t{\r\n\t\t\t\t\t/* Empty record set */\r\n\t\t\t\t\tsOut = oLang.sInfoEmpty;\r\n\t\t\t\t}\r\n\t\t\t\telse {\r\n\t\t\t\t\t/* Normal record set */\r\n\t\t\t\t\tsOut = oLang.sInfo;\r\n\t\t\t\t}\r\n\r\n\t\t\t\tif ( iTotal != iMax )\r\n\t\t\t\t{\r\n\t\t\t\t\t/* Record set after filtering */\r\n\t\t\t\t\tsOut += ' ' + oLang.sInfoFiltered;\r\n\t\t\t\t}\r\n\r\n\t\t\t\t// Convert the macros\r\n\t\t\t\tsOut += oLang.sInfoPostFix;\r\n\t\t\t\tsOut = _fnInfoMacros( oSettings, sOut );\r\n\r\n\t\t\t\tif ( oLang.fnInfoCallback !== null )\r\n\t\t\t\t{\r\n\t\t\t\t\tsOut = oLang.fnInfoCallback.call( oSettings.oInstance,\r\n\t\t\t\t\t\toSettings, iStart, iEnd, iMax, iTotal, sOut );\r\n\t\t\t\t}\r\n\r\n\t\t\t\tvar n = oSettings.aanFeatures.i;\r\n\t\t\t\tfor ( var i=0, iLen=n.length ; i';\r\n\t\t\t\tvar i, iLen;\r\n\t\t\t\tvar aLengthMenu = oSettings.aLengthMenu;\r\n\r\n\t\t\t\tif ( aLengthMenu.length == 2 && typeof aLengthMenu[0] === 'object' &&\r\n\t\t\t\t\ttypeof aLengthMenu[1] === 'object' )\r\n\t\t\t\t{\r\n\t\t\t\t\tfor ( i=0, iLen=aLengthMenu[0].length ; i'+aLengthMenu[1][i]+'';\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t\telse\r\n\t\t\t\t{\r\n\t\t\t\t\tfor ( i=0, iLen=aLengthMenu.length ; i'+aLengthMenu[i]+'';\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t\tsStdMenu += '';\r\n\r\n\t\t\t\tvar nLength = document.createElement( 'div' );\r\n\t\t\t\tif ( !oSettings.aanFeatures.l )\r\n\t\t\t\t{\r\n\t\t\t\t\tnLength.id = oSettings.sTableId+'_length';\r\n\t\t\t\t}\r\n\t\t\t\tnLength.className = oSettings.oClasses.sLength;\r\n\t\t\t\tnLength.innerHTML = '';\r\n\r\n\t\t\t\t/*\r\n\t\t\t\t * Set the length to the current display length - thanks to Andrea Pavlovic for this fix,\r\n\t\t\t\t * and Stefan Skopnik for fixing the fix!\r\n\t\t\t\t */\r\n\t\t\t\t$('select option[value=\"'+oSettings._iDisplayLength+'\"]', nLength).attr(\"selected\", true);\r\n\r\n\t\t\t\t$('select', nLength).bind( 'change.DT', function(e) {\r\n\t\t\t\t\tvar iVal = $(this).val();\r\n\r\n\t\t\t\t\t/* Update all other length options for the new display */\r\n\t\t\t\t\tvar n = oSettings.aanFeatures.l;\r\n\t\t\t\t\tfor ( i=0, iLen=n.length ; i oSettings.aiDisplay.length ||\r\n\t\t\t\t\t\toSettings._iDisplayLength == -1 )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\toSettings._iDisplayEnd = oSettings.aiDisplay.length;\r\n\t\t\t\t\t}\r\n\t\t\t\t\telse\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\toSettings._iDisplayEnd = oSettings._iDisplayStart + oSettings._iDisplayLength;\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t}\r\n\r\n\r\n\r\n\t\t\t/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *\r\n\t\t\t * Note that most of the paging logic is done in \r\n\t\t\t * DataTable.ext.oPagination\r\n\t\t\t */\r\n\r\n\t\t\t/**\r\n\t\t\t * Generate the node required for default pagination\r\n\t\t\t * @param {object} oSettings dataTables settings object\r\n\t\t\t * @returns {node} Pagination feature node\r\n\t\t\t * @memberof DataTable#oApi\r\n\t\t\t */\r\n\t\t\tfunction _fnFeatureHtmlPaginate ( oSettings )\r\n\t\t\t{\r\n\t\t\t\tif ( oSettings.oScroll.bInfinite )\r\n\t\t\t\t{\r\n\t\t\t\t\treturn null;\r\n\t\t\t\t}\r\n\r\n\t\t\t\tvar nPaginate = document.createElement( 'div' );\r\n\t\t\t\tnPaginate.className = oSettings.oClasses.sPaging+oSettings.sPaginationType;\r\n\r\n\t\t\t\tDataTable.ext.oPagination[ oSettings.sPaginationType ].fnInit( oSettings, nPaginate,\r\n\t\t\t\t\tfunction( oSettings ) {\r\n\t\t\t\t\t\t_fnCalculateEnd( oSettings );\r\n\t\t\t\t\t\t_fnDraw( oSettings );\r\n\t\t\t\t\t}\r\n\t\t\t\t);\r\n\r\n\t\t\t\t/* Add a draw callback for the pagination on first instance, to update the paging display */\r\n\t\t\t\tif ( !oSettings.aanFeatures.p )\r\n\t\t\t\t{\r\n\t\t\t\t\toSettings.aoDrawCallback.push( {\r\n\t\t\t\t\t\t\"fn\": function( oSettings ) {\r\n\t\t\t\t\t\t\tDataTable.ext.oPagination[ oSettings.sPaginationType ].fnUpdate( oSettings, function( oSettings ) {\r\n\t\t\t\t\t\t\t\t_fnCalculateEnd( oSettings );\r\n\t\t\t\t\t\t\t\t_fnDraw( oSettings );\r\n\t\t\t\t\t\t\t} );\r\n\t\t\t\t\t\t},\r\n\t\t\t\t\t\t\"sName\": \"pagination\"\r\n\t\t\t\t\t} );\r\n\t\t\t\t}\r\n\t\t\t\treturn nPaginate;\r\n\t\t\t}\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Alter the display settings to change the page\r\n\t\t\t * @param {object} oSettings dataTables settings object\r\n\t\t\t * @param {string|int} mAction Paging action to take: \"first\", \"previous\", \"next\" or \"last\"\r\n\t\t\t * or page number to jump to (integer)\r\n\t\t\t * @returns {bool} true page has changed, false - no change (no effect) eg 'first' on page 1\r\n\t\t\t * @memberof DataTable#oApi\r\n\t\t\t */\r\n\t\t\tfunction _fnPageChange ( oSettings, mAction )\r\n\t\t\t{\r\n\t\t\t\tvar iOldStart = oSettings._iDisplayStart;\r\n\r\n\t\t\t\tif ( typeof mAction === \"number\" )\r\n\t\t\t\t{\r\n\t\t\t\t\toSettings._iDisplayStart = mAction * oSettings._iDisplayLength;\r\n\t\t\t\t\tif ( oSettings._iDisplayStart > oSettings.fnRecordsDisplay() )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\toSettings._iDisplayStart = 0;\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t\telse if ( mAction == \"first\" )\r\n\t\t\t\t{\r\n\t\t\t\t\toSettings._iDisplayStart = 0;\r\n\t\t\t\t}\r\n\t\t\t\telse if ( mAction == \"previous\" )\r\n\t\t\t\t{\r\n\t\t\t\t\toSettings._iDisplayStart = oSettings._iDisplayLength>=0 ?\r\n\t\t\t\t\t\toSettings._iDisplayStart - oSettings._iDisplayLength :\r\n\t\t\t\t\t\t0;\r\n\r\n\t\t\t\t\t/* Correct for under-run */\r\n\t\t\t\t\tif ( oSettings._iDisplayStart < 0 )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\toSettings._iDisplayStart = 0;\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t\telse if ( mAction == \"next\" )\r\n\t\t\t\t{\r\n\t\t\t\t\tif ( oSettings._iDisplayLength >= 0 )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t/* Make sure we are not over running the display array */\r\n\t\t\t\t\t\tif ( oSettings._iDisplayStart + oSettings._iDisplayLength < oSettings.fnRecordsDisplay() )\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\toSettings._iDisplayStart += oSettings._iDisplayLength;\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\t\telse\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\toSettings._iDisplayStart = 0;\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t\telse if ( mAction == \"last\" )\r\n\t\t\t\t{\r\n\t\t\t\t\tif ( oSettings._iDisplayLength >= 0 )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\tvar iPages = parseInt( (oSettings.fnRecordsDisplay()-1) / oSettings._iDisplayLength, 10 ) + 1;\r\n\t\t\t\t\t\toSettings._iDisplayStart = (iPages-1) * oSettings._iDisplayLength;\r\n\t\t\t\t\t}\r\n\t\t\t\t\telse\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\toSettings._iDisplayStart = 0;\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t\telse\r\n\t\t\t\t{\r\n\t\t\t\t\t_fnLog( oSettings, 0, \"Unknown paging action: \"+mAction );\r\n\t\t\t\t}\r\n\t\t\t\t$(oSettings.oInstance).trigger('page', oSettings);\r\n\r\n\t\t\t\treturn iOldStart != oSettings._iDisplayStart;\r\n\t\t\t}\r\n\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Generate the node required for the processing node\r\n\t\t\t * @param {object} oSettings dataTables settings object\r\n\t\t\t * @returns {node} Processing element\r\n\t\t\t * @memberof DataTable#oApi\r\n\t\t\t */\r\n\t\t\tfunction _fnFeatureHtmlProcessing ( oSettings )\r\n\t\t\t{\r\n\t\t\t\tvar nProcessing = document.createElement( 'div' );\r\n\r\n\t\t\t\tif ( !oSettings.aanFeatures.r )\r\n\t\t\t\t{\r\n\t\t\t\t\tnProcessing.id = oSettings.sTableId+'_processing';\r\n\t\t\t\t}\r\n\t\t\t\tnProcessing.innerHTML = oSettings.oLanguage.sProcessing;\r\n\t\t\t\tnProcessing.className = oSettings.oClasses.sProcessing;\r\n\t\t\t\toSettings.nTable.parentNode.insertBefore( nProcessing, oSettings.nTable );\r\n\r\n\t\t\t\treturn nProcessing;\r\n\t\t\t}\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Display or hide the processing indicator\r\n\t\t\t * @param {object} oSettings dataTables settings object\r\n\t\t\t * @param {bool} bShow Show the processing indicator (true) or not (false)\r\n\t\t\t * @memberof DataTable#oApi\r\n\t\t\t */\r\n\t\t\tfunction _fnProcessingDisplay ( oSettings, bShow )\r\n\t\t\t{\r\n\t\t\t\tif ( oSettings.oFeatures.bProcessing )\r\n\t\t\t\t{\r\n\t\t\t\t\tvar an = oSettings.aanFeatures.r;\r\n\t\t\t\t\tfor ( var i=0, iLen=an.length ; i 0 )\r\n\t\t\t\t{\r\n\t\t\t\t\tnCaption = nCaption[0];\r\n\t\t\t\t\tif ( nCaption._captionSide === \"top\" )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\tnScrollHeadTable.appendChild( nCaption );\r\n\t\t\t\t\t}\r\n\t\t\t\t\telse if ( nCaption._captionSide === \"bottom\" && nTfoot )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\tnScrollFootTable.appendChild( nCaption );\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\r\n\t\t\t\t/*\r\n\t\t\t\t * Sizing\r\n\t\t\t\t */\r\n\t\t\t\t/* When x-scrolling add the width and a scroller to move the header with the body */\r\n\t\t\t\tif ( oSettings.oScroll.sX !== \"\" )\r\n\t\t\t\t{\r\n\t\t\t\t\tnScrollHead.style.width = _fnStringToCss( oSettings.oScroll.sX );\r\n\t\t\t\t\tnScrollBody.style.width = _fnStringToCss( oSettings.oScroll.sX );\r\n\r\n\t\t\t\t\tif ( nTfoot !== null )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\tnScrollFoot.style.width = _fnStringToCss( oSettings.oScroll.sX );\r\n\t\t\t\t\t}\r\n\r\n\t\t\t\t\t/* When the body is scrolled, then we also want to scroll the headers */\r\n\t\t\t\t\t$(nScrollBody).scroll( function (e) {\r\n\t\t\t\t\t\tnScrollHead.scrollLeft = this.scrollLeft;\r\n\r\n\t\t\t\t\t\tif ( nTfoot !== null )\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\tnScrollFoot.scrollLeft = this.scrollLeft;\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t} );\r\n\t\t\t\t}\r\n\r\n\t\t\t\t/* When yscrolling, add the height */\r\n\t\t\t\tif ( oSettings.oScroll.sY !== \"\" )\r\n\t\t\t\t{\r\n\t\t\t\t\tnScrollBody.style.height = _fnStringToCss( oSettings.oScroll.sY );\r\n\t\t\t\t}\r\n\r\n\t\t\t\t/* Redraw - align columns across the tables */\r\n\t\t\t\toSettings.aoDrawCallback.push( {\r\n\t\t\t\t\t\"fn\": _fnScrollDraw,\r\n\t\t\t\t\t\"sName\": \"scrolling\"\r\n\t\t\t\t} );\r\n\r\n\t\t\t\t/* Infinite scrolling event handlers */\r\n\t\t\t\tif ( oSettings.oScroll.bInfinite )\r\n\t\t\t\t{\r\n\t\t\t\t\t$(nScrollBody).scroll( function() {\r\n\t\t\t\t\t\t/* Use a blocker to stop scrolling from loading more data while other data is still loading */\r\n\t\t\t\t\t\tif ( !oSettings.bDrawing && $(this).scrollTop() !== 0 )\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t/* Check if we should load the next data set */\r\n\t\t\t\t\t\t\tif ( $(this).scrollTop() + $(this).height() >\r\n\t\t\t\t\t\t\t\t$(oSettings.nTable).height() - oSettings.oScroll.iLoadGap )\r\n\t\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\t/* Only do the redraw if we have to - we might be at the end of the data */\r\n\t\t\t\t\t\t\t\tif ( oSettings.fnDisplayEnd() < oSettings.fnRecordsDisplay() )\r\n\t\t\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\t\t_fnPageChange( oSettings, 'next' );\r\n\t\t\t\t\t\t\t\t\t_fnCalculateEnd( oSettings );\r\n\t\t\t\t\t\t\t\t\t_fnDraw( oSettings );\r\n\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t} );\r\n\t\t\t\t}\r\n\r\n\t\t\t\toSettings.nScrollHead = nScrollHead;\r\n\t\t\t\toSettings.nScrollFoot = nScrollFoot;\r\n\r\n\t\t\t\treturn nScroller;\r\n\t\t\t}\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Update the various tables for resizing. It's a bit of a pig this function, but\r\n\t\t\t * basically the idea to:\r\n\t\t\t * 1. Re-create the table inside the scrolling div\r\n\t\t\t * 2. Take live measurements from the DOM\r\n\t\t\t * 3. Apply the measurements\r\n\t\t\t * 4. Clean up\r\n\t\t\t * @param {object} o dataTables settings object\r\n\t\t\t * @returns {node} Node to add to the DOM\r\n\t\t\t * @memberof DataTable#oApi\r\n\t\t\t */\r\n\t\t\tfunction _fnScrollDraw ( o )\r\n\t\t\t{\r\n\t\t\t\tvar\r\n\t\t\t\t\tnScrollHeadInner = o.nScrollHead.getElementsByTagName('div')[0],\r\n\t\t\t\t\tnScrollHeadTable = nScrollHeadInner.getElementsByTagName('table')[0],\r\n\t\t\t\t\tnScrollBody = o.nTable.parentNode,\r\n\t\t\t\t\ti, iLen, j, jLen, anHeadToSize, anHeadSizers, anFootSizers, anFootToSize, oStyle, iVis,\r\n\t\t\t\t\tnTheadSize, nTfootSize,\r\n\t\t\t\t\tiWidth, aApplied=[], aAppliedFooter=[], iSanityWidth,\r\n\t\t\t\t\tnScrollFootInner = (o.nTFoot !== null) ? o.nScrollFoot.getElementsByTagName('div')[0] : null,\r\n\t\t\t\t\tnScrollFootTable = (o.nTFoot !== null) ? nScrollFootInner.getElementsByTagName('table')[0] : null,\r\n\t\t\t\t\tie67 = o.oBrowser.bScrollOversize,\r\n\t\t\t\t\tzeroOut = function(nSizer) {\r\n\t\t\t\t\t\toStyle = nSizer.style;\r\n\t\t\t\t\t\toStyle.paddingTop = \"0\";\r\n\t\t\t\t\t\toStyle.paddingBottom = \"0\";\r\n\t\t\t\t\t\toStyle.borderTopWidth = \"0\";\r\n\t\t\t\t\t\toStyle.borderBottomWidth = \"0\";\r\n\t\t\t\t\t\toStyle.height = 0;\r\n\t\t\t\t\t};\r\n\r\n\t\t\t\t/*\r\n\t\t\t\t * 1. Re-create the table inside the scrolling div\r\n\t\t\t\t */\r\n\r\n\t\t\t\t/* Remove the old minimised thead and tfoot elements in the inner table */\r\n\t\t\t\t$(o.nTable).children('thead, tfoot').remove();\r\n\r\n\t\t\t\t/* Clone the current header and footer elements and then place it into the inner table */\r\n\t\t\t\tnTheadSize = $(o.nTHead).clone()[0];\r\n\t\t\t\to.nTable.insertBefore( nTheadSize, o.nTable.childNodes[0] );\r\n\t\t\t\tanHeadToSize = o.nTHead.getElementsByTagName('tr');\r\n\t\t\t\tanHeadSizers = nTheadSize.getElementsByTagName('tr');\r\n\r\n\t\t\t\tif ( o.nTFoot !== null )\r\n\t\t\t\t{\r\n\t\t\t\t\tnTfootSize = $(o.nTFoot).clone()[0];\r\n\t\t\t\t\to.nTable.insertBefore( nTfootSize, o.nTable.childNodes[1] );\r\n\t\t\t\t\tanFootToSize = o.nTFoot.getElementsByTagName('tr');\r\n\t\t\t\t\tanFootSizers = nTfootSize.getElementsByTagName('tr');\r\n\t\t\t\t}\r\n\r\n\t\t\t\t/*\r\n\t\t\t\t * 2. Take live measurements from the DOM - do not alter the DOM itself!\r\n\t\t\t\t */\r\n\r\n\t\t\t\t/* Remove old sizing and apply the calculated column widths\r\n\t\t\t\t * Get the unique column headers in the newly created (cloned) header. We want to apply the\r\n\t\t\t\t * calculated sizes to this header\r\n\t\t\t\t */\r\n\t\t\t\tif ( o.oScroll.sX === \"\" )\r\n\t\t\t\t{\r\n\t\t\t\t\tnScrollBody.style.width = '100%';\r\n\t\t\t\t\tnScrollHeadInner.parentNode.style.width = '100%';\r\n\t\t\t\t}\r\n\r\n\t\t\t\tvar nThs = _fnGetUniqueThs( o, nTheadSize );\r\n\t\t\t\tfor ( i=0, iLen=nThs.length ; i nScrollBody.offsetHeight ||\r\n\t\t\t\t\t\t$(nScrollBody).css('overflow-y') == \"scroll\") )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\to.nTable.style.width = _fnStringToCss( $(o.nTable).outerWidth() - o.oScroll.iBarWidth);\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t\telse\r\n\t\t\t\t{\r\n\t\t\t\t\tif ( o.oScroll.sXInner !== \"\" )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t/* x scroll inner has been given - use it */\r\n\t\t\t\t\t\to.nTable.style.width = _fnStringToCss(o.oScroll.sXInner);\r\n\t\t\t\t\t}\r\n\t\t\t\t\telse if ( iSanityWidth == $(nScrollBody).width() &&\r\n\t\t\t\t\t\t$(nScrollBody).height() < $(o.nTable).height() )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t/* There is y-scrolling - try to take account of the y scroll bar */\r\n\t\t\t\t\t\to.nTable.style.width = _fnStringToCss( iSanityWidth-o.oScroll.iBarWidth );\r\n\t\t\t\t\t\tif ( $(o.nTable).outerWidth() > iSanityWidth-o.oScroll.iBarWidth )\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t/* Not possible to take account of it */\r\n\t\t\t\t\t\t\to.nTable.style.width = _fnStringToCss( iSanityWidth );\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\t\telse\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t/* All else fails */\r\n\t\t\t\t\t\to.nTable.style.width = _fnStringToCss( iSanityWidth );\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\r\n\t\t\t\t/* Recalculate the sanity width - now that we've applied the required width, before it was\r\n\t\t\t\t * a temporary variable. This is required because the column width calculation is done\r\n\t\t\t\t * before this table DOM is created.\r\n\t\t\t\t */\r\n\t\t\t\tiSanityWidth = $(o.nTable).outerWidth();\r\n\r\n\t\t\t\t/* We want the hidden header to have zero height, so remove padding and borders. Then\r\n\t\t\t\t * set the width based on the real headers\r\n\t\t\t\t */\r\n\r\n\t\t\t\t// Apply all styles in one pass. Invalidates layout only once because we don't read any \r\n\t\t\t\t// DOM properties.\r\n\t\t\t\t_fnApplyToChildren( zeroOut, anHeadSizers );\r\n\r\n\t\t\t\t// Read all widths in next pass. Forces layout only once because we do not change \r\n\t\t\t\t// any DOM properties.\r\n\t\t\t\t_fnApplyToChildren( function(nSizer) {\r\n\t\t\t\t\taApplied.push( _fnStringToCss( $(nSizer).width() ) );\r\n\t\t\t\t}, anHeadSizers );\r\n\r\n\t\t\t\t// Apply all widths in final pass. Invalidates layout only once because we do not\r\n\t\t\t\t// read any DOM properties.\r\n\t\t\t\t_fnApplyToChildren( function(nToSize, i) {\r\n\t\t\t\t\tnToSize.style.width = aApplied[i];\r\n\t\t\t\t}, anHeadToSize );\r\n\r\n\t\t\t\t$(anHeadSizers).height(0);\r\n\r\n\t\t\t\t/* Same again with the footer if we have one */\r\n\t\t\t\tif ( o.nTFoot !== null )\r\n\t\t\t\t{\r\n\t\t\t\t\t_fnApplyToChildren( zeroOut, anFootSizers );\r\n\r\n\t\t\t\t\t_fnApplyToChildren( function(nSizer) {\r\n\t\t\t\t\t\taAppliedFooter.push( _fnStringToCss( $(nSizer).width() ) );\r\n\t\t\t\t\t}, anFootSizers );\r\n\r\n\t\t\t\t\t_fnApplyToChildren( function(nToSize, i) {\r\n\t\t\t\t\t\tnToSize.style.width = aAppliedFooter[i];\r\n\t\t\t\t\t}, anFootToSize );\r\n\r\n\t\t\t\t\t$(anFootSizers).height(0);\r\n\t\t\t\t}\r\n\r\n\t\t\t\t/*\r\n\t\t\t\t * 3. Apply the measurements\r\n\t\t\t\t */\r\n\r\n\t\t\t\t/* \"Hide\" the header and footer that we used for the sizing. We want to also fix their width\r\n\t\t\t\t * to what they currently are\r\n\t\t\t\t */\r\n\t\t\t\t_fnApplyToChildren( function(nSizer, i) {\r\n\t\t\t\t\tnSizer.innerHTML = \"\";\r\n\t\t\t\t\tnSizer.style.width = aApplied[i];\r\n\t\t\t\t}, anHeadSizers );\r\n\r\n\t\t\t\tif ( o.nTFoot !== null )\r\n\t\t\t\t{\r\n\t\t\t\t\t_fnApplyToChildren( function(nSizer, i) {\r\n\t\t\t\t\t\tnSizer.innerHTML = \"\";\r\n\t\t\t\t\t\tnSizer.style.width = aAppliedFooter[i];\r\n\t\t\t\t\t}, anFootSizers );\r\n\t\t\t\t}\r\n\r\n\t\t\t\t/* Sanity check that the table is of a sensible width. If not then we are going to get\r\n\t\t\t\t * misalignment - try to prevent this by not allowing the table to shrink below its min width\r\n\t\t\t\t */\r\n\t\t\t\tif ( $(o.nTable).outerWidth() < iSanityWidth )\r\n\t\t\t\t{\r\n\t\t\t\t\t/* The min width depends upon if we have a vertical scrollbar visible or not */\r\n\t\t\t\t\tvar iCorrection = ((nScrollBody.scrollHeight > nScrollBody.offsetHeight ||\r\n\t\t\t\t\t\t$(nScrollBody).css('overflow-y') == \"scroll\")) ?\r\n\t\t\t\t\t\tiSanityWidth+o.oScroll.iBarWidth : iSanityWidth;\r\n\r\n\t\t\t\t\t/* IE6/7 are a law unto themselves... */\r\n\t\t\t\t\tif ( ie67 && (nScrollBody.scrollHeight >\r\n\t\t\t\t\t\tnScrollBody.offsetHeight || $(nScrollBody).css('overflow-y') == \"scroll\") )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\to.nTable.style.width = _fnStringToCss( iCorrection-o.oScroll.iBarWidth );\r\n\t\t\t\t\t}\r\n\r\n\t\t\t\t\t/* Apply the calculated minimum width to the table wrappers */\r\n\t\t\t\t\tnScrollBody.style.width = _fnStringToCss( iCorrection );\r\n\t\t\t\t\to.nScrollHead.style.width = _fnStringToCss( iCorrection );\r\n\r\n\t\t\t\t\tif ( o.nTFoot !== null )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\to.nScrollFoot.style.width = _fnStringToCss( iCorrection );\r\n\t\t\t\t\t}\r\n\r\n\t\t\t\t\t/* And give the user a warning that we've stopped the table getting too small */\r\n\t\t\t\t\tif ( o.oScroll.sX === \"\" )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t_fnLog( o, 1, \"The table cannot fit into the current element which will cause column\"+\r\n\t\t\t\t\t\t\t\" misalignment. The table has been drawn at its minimum possible width.\" );\r\n\t\t\t\t\t}\r\n\t\t\t\t\telse if ( o.oScroll.sXInner !== \"\" )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t_fnLog( o, 1, \"The table cannot fit into the current element which will cause column\"+\r\n\t\t\t\t\t\t\t\" misalignment. Increase the sScrollXInner value or remove it to allow automatic\"+\r\n\t\t\t\t\t\t\t\" calculation\" );\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t\telse\r\n\t\t\t\t{\r\n\t\t\t\t\tnScrollBody.style.width = _fnStringToCss( '100%' );\r\n\t\t\t\t\to.nScrollHead.style.width = _fnStringToCss( '100%' );\r\n\r\n\t\t\t\t\tif ( o.nTFoot !== null )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\to.nScrollFoot.style.width = _fnStringToCss( '100%' );\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\r\n\r\n\t\t\t\t/*\r\n\t\t\t\t * 4. Clean up\r\n\t\t\t\t */\r\n\t\t\t\tif ( o.oScroll.sY === \"\" )\r\n\t\t\t\t{\r\n\t\t\t\t\t/* IE7< puts a vertical scrollbar in place (when it shouldn't be) due to subtracting\r\n\t\t\t\t\t * the scrollbar height from the visible display, rather than adding it on. We need to\r\n\t\t\t\t\t * set the height in order to sort this. Don't want to do it in any other browsers.\r\n\t\t\t\t\t */\r\n\t\t\t\t\tif ( ie67 )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\tnScrollBody.style.height = _fnStringToCss( o.nTable.offsetHeight+o.oScroll.iBarWidth );\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\r\n\t\t\t\tif ( o.oScroll.sY !== \"\" && o.oScroll.bCollapse )\r\n\t\t\t\t{\r\n\t\t\t\t\tnScrollBody.style.height = _fnStringToCss( o.oScroll.sY );\r\n\r\n\t\t\t\t\tvar iExtra = (o.oScroll.sX !== \"\" && o.nTable.offsetWidth > nScrollBody.offsetWidth) ?\r\n\t\t\t\t\t\to.oScroll.iBarWidth : 0;\r\n\t\t\t\t\tif ( o.nTable.offsetHeight < nScrollBody.offsetHeight )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\tnScrollBody.style.height = _fnStringToCss( o.nTable.offsetHeight+iExtra );\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\r\n\t\t\t\t/* Finally set the width's of the header and footer tables */\r\n\t\t\t\tvar iOuterWidth = $(o.nTable).outerWidth();\r\n\t\t\t\tnScrollHeadTable.style.width = _fnStringToCss( iOuterWidth );\r\n\t\t\t\tnScrollHeadInner.style.width = _fnStringToCss( iOuterWidth );\r\n\r\n\t\t\t\t// Figure out if there are scrollbar present - if so then we need a the header and footer to\r\n\t\t\t\t// provide a bit more space to allow \"overflow\" scrolling (i.e. past the scrollbar)\r\n\t\t\t\tvar bScrolling = $(o.nTable).height() > nScrollBody.clientHeight || $(nScrollBody).css('overflow-y') == \"scroll\";\r\n\t\t\t\tnScrollHeadInner.style.paddingRight = bScrolling ? o.oScroll.iBarWidth+\"px\" : \"0px\";\r\n\r\n\t\t\t\tif ( o.nTFoot !== null )\r\n\t\t\t\t{\r\n\t\t\t\t\tnScrollFootTable.style.width = _fnStringToCss( iOuterWidth );\r\n\t\t\t\t\tnScrollFootInner.style.width = _fnStringToCss( iOuterWidth );\r\n\t\t\t\t\tnScrollFootInner.style.paddingRight = bScrolling ? o.oScroll.iBarWidth+\"px\" : \"0px\";\r\n\t\t\t\t}\r\n\r\n\t\t\t\t/* Adjust the position of the header in case we loose the y-scrollbar */\r\n\t\t\t\t$(nScrollBody).scroll();\r\n\r\n\t\t\t\t/* If sorting or filtering has occurred, jump the scrolling back to the top */\r\n\t\t\t\tif ( o.bSorted || o.bFiltered )\r\n\t\t\t\t{\r\n\t\t\t\t\tnScrollBody.scrollTop = 0;\r\n\t\t\t\t}\r\n\t\t\t}\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Apply a given function to the display child nodes of an element array (typically\r\n\t\t\t * TD children of TR rows\r\n\t\t\t * @param {function} fn Method to apply to the objects\r\n\t\t\t * @param array {nodes} an1 List of elements to look through for display children\r\n\t\t\t * @param array {nodes} an2 Another list (identical structure to the first) - optional\r\n\t\t\t * @memberof DataTable#oApi\r\n\t\t\t */\r\n\t\t\tfunction _fnApplyToChildren( fn, an1, an2 )\r\n\t\t\t{\r\n\t\t\t\tvar index=0, i=0, iLen=an1.length;\r\n\t\t\t\tvar nNode1, nNode2;\r\n\r\n\t\t\t\twhile ( i < iLen )\r\n\t\t\t\t{\r\n\t\t\t\t\tnNode1 = an1[i].firstChild;\r\n\t\t\t\t\tnNode2 = an2 ? an2[i].firstChild : null;\r\n\t\t\t\t\twhile ( nNode1 )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\tif ( nNode1.nodeType === 1 )\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\tif ( an2 )\r\n\t\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\tfn( nNode1, nNode2, index );\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\telse\r\n\t\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\tfn( nNode1, index );\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\tindex++;\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t\tnNode1 = nNode1.nextSibling;\r\n\t\t\t\t\t\tnNode2 = an2 ? nNode2.nextSibling : null;\r\n\t\t\t\t\t}\r\n\t\t\t\t\ti++;\r\n\t\t\t\t}\r\n\t\t\t}\r\n\r\n\t\t\t/**\r\n\t\t\t * Convert a CSS unit width to pixels (e.g. 2em)\r\n\t\t\t * @param {string} sWidth width to be converted\r\n\t\t\t * @param {node} nParent parent to get the with for (required for relative widths) - optional\r\n\t\t\t * @returns {int} iWidth width in pixels\r\n\t\t\t * @memberof DataTable#oApi\r\n\t\t\t */\r\n\t\t\tfunction _fnConvertToWidth ( sWidth, nParent )\r\n\t\t\t{\r\n\t\t\t\tif ( !sWidth || sWidth === null || sWidth === '' )\r\n\t\t\t\t{\r\n\t\t\t\t\treturn 0;\r\n\t\t\t\t}\r\n\r\n\t\t\t\tif ( !nParent )\r\n\t\t\t\t{\r\n\t\t\t\t\tnParent = document.body;\r\n\t\t\t\t}\r\n\r\n\t\t\t\tvar iWidth;\r\n\t\t\t\tvar nTmp = document.createElement( \"div\" );\r\n\t\t\t\tnTmp.style.width = _fnStringToCss( sWidth );\r\n\r\n\t\t\t\tnParent.appendChild( nTmp );\r\n\t\t\t\tiWidth = nTmp.offsetWidth;\r\n\t\t\t\tnParent.removeChild( nTmp );\r\n\r\n\t\t\t\treturn ( iWidth );\r\n\t\t\t}\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Calculate the width of columns for the table\r\n\t\t\t * @param {object} oSettings dataTables settings object\r\n\t\t\t * @memberof DataTable#oApi\r\n\t\t\t */\r\n\t\t\tfunction _fnCalculateColumnWidths ( oSettings )\r\n\t\t\t{\r\n\t\t\t\tvar iTableWidth = oSettings.nTable.offsetWidth;\r\n\t\t\t\tvar iUserInputs = 0;\r\n\t\t\t\tvar iTmpWidth;\r\n\t\t\t\tvar iVisibleColumns = 0;\r\n\t\t\t\tvar iColums = oSettings.aoColumns.length;\r\n\t\t\t\tvar i, iIndex, iCorrector, iWidth;\r\n\t\t\t\tvar oHeaders = $('th', oSettings.nTHead);\r\n\t\t\t\tvar widthAttr = oSettings.nTable.getAttribute('width');\r\n\t\t\t\tvar nWrapper = oSettings.nTable.parentNode;\r\n\r\n\t\t\t\t/* Convert any user input sizes into pixel sizes */\r\n\t\t\t\tfor ( i=0 ; itd', nCalcTmp);\r\n\t\t\t\t\t}\r\n\r\n\t\t\t\t\t/* Apply custom sizing to the cloned header */\r\n\t\t\t\t\tvar nThs = _fnGetUniqueThs( oSettings, nTheadClone );\r\n\t\t\t\t\tiCorrector = 0;\r\n\t\t\t\t\tfor ( i=0 ; i 0 )\r\n\t\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\toSettings.aoColumns[i].sWidth = _fnStringToCss( iWidth );\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\tiCorrector++;\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\r\n\t\t\t\t\tvar cssWidth = $(nCalcTmp).css('width');\r\n\t\t\t\t\toSettings.nTable.style.width = (cssWidth.indexOf('%') !== -1) ?\r\n\t\t\t\t\t\tcssWidth : _fnStringToCss( $(nCalcTmp).outerWidth() );\r\n\t\t\t\t\tnCalcTmp.parentNode.removeChild( nCalcTmp );\r\n\t\t\t\t}\r\n\r\n\t\t\t\tif ( widthAttr )\r\n\t\t\t\t{\r\n\t\t\t\t\toSettings.nTable.style.width = _fnStringToCss( widthAttr );\r\n\t\t\t\t}\r\n\t\t\t}\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Adjust a table's width to take account of scrolling\r\n\t\t\t * @param {object} oSettings dataTables settings object\r\n\t\t\t * @param {node} n table node\r\n\t\t\t * @memberof DataTable#oApi\r\n\t\t\t */\r\n\t\t\tfunction _fnScrollingWidthAdjust ( oSettings, n )\r\n\t\t\t{\r\n\t\t\t\tif ( oSettings.oScroll.sX === \"\" && oSettings.oScroll.sY !== \"\" )\r\n\t\t\t\t{\r\n\t\t\t\t\t/* When y-scrolling only, we want to remove the width of the scroll bar so the table\r\n\t\t\t\t\t * + scroll bar will fit into the area avaialble.\r\n\t\t\t\t\t */\r\n\t\t\t\t\tvar iOrigWidth = $(n).width();\r\n\t\t\t\t\tn.style.width = _fnStringToCss( $(n).outerWidth()-oSettings.oScroll.iBarWidth );\r\n\t\t\t\t}\r\n\t\t\t\telse if ( oSettings.oScroll.sX !== \"\" )\r\n\t\t\t\t{\r\n\t\t\t\t\t/* When x-scrolling both ways, fix the table at it's current size, without adjusting */\r\n\t\t\t\t\tn.style.width = _fnStringToCss( $(n).outerWidth() );\r\n\t\t\t\t}\r\n\t\t\t}\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Get the widest node\r\n\t\t\t * @param {object} oSettings dataTables settings object\r\n\t\t\t * @param {int} iCol column of interest\r\n\t\t\t * @returns {node} widest table node\r\n\t\t\t * @memberof DataTable#oApi\r\n\t\t\t */\r\n\t\t\tfunction _fnGetWidestNode( oSettings, iCol )\r\n\t\t\t{\r\n\t\t\t\tvar iMaxIndex = _fnGetMaxLenString( oSettings, iCol );\r\n\t\t\t\tif ( iMaxIndex < 0 )\r\n\t\t\t\t{\r\n\t\t\t\t\treturn null;\r\n\t\t\t\t}\r\n\r\n\t\t\t\tif ( oSettings.aoData[iMaxIndex].nTr === null )\r\n\t\t\t\t{\r\n\t\t\t\t\tvar n = document.createElement('td');\r\n\t\t\t\t\tn.innerHTML = _fnGetCellData( oSettings, iMaxIndex, iCol, '' );\r\n\t\t\t\t\treturn n;\r\n\t\t\t\t}\r\n\t\t\t\treturn _fnGetTdNodes(oSettings, iMaxIndex)[iCol];\r\n\t\t\t}\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Get the maximum strlen for each data column\r\n\t\t\t * @param {object} oSettings dataTables settings object\r\n\t\t\t * @param {int} iCol column of interest\r\n\t\t\t * @returns {string} max string length for each column\r\n\t\t\t * @memberof DataTable#oApi\r\n\t\t\t */\r\n\t\t\tfunction _fnGetMaxLenString( oSettings, iCol )\r\n\t\t\t{\r\n\t\t\t\tvar iMax = -1;\r\n\t\t\t\tvar iMaxIndex = -1;\r\n\r\n\t\t\t\tfor ( var i=0 ; i/g, \"\" );\r\n\t\t\t\t\tif ( s.length > iMax )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\tiMax = s.length;\r\n\t\t\t\t\t\tiMaxIndex = i;\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\r\n\t\t\t\treturn iMaxIndex;\r\n\t\t\t}\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Append a CSS unit (only if required) to a string\r\n\t\t\t * @param {array} aArray1 first array\r\n\t\t\t * @param {array} aArray2 second array\r\n\t\t\t * @returns {int} 0 if match, 1 if length is different, 2 if no match\r\n\t\t\t * @memberof DataTable#oApi\r\n\t\t\t */\r\n\t\t\tfunction _fnStringToCss( s )\r\n\t\t\t{\r\n\t\t\t\tif ( s === null )\r\n\t\t\t\t{\r\n\t\t\t\t\treturn \"0px\";\r\n\t\t\t\t}\r\n\r\n\t\t\t\tif ( typeof s == 'number' )\r\n\t\t\t\t{\r\n\t\t\t\t\tif ( s < 0 )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\treturn \"0px\";\r\n\t\t\t\t\t}\r\n\t\t\t\t\treturn s+\"px\";\r\n\t\t\t\t}\r\n\r\n\t\t\t\t/* Check if the last character is not 0-9 */\r\n\t\t\t\tvar c = s.charCodeAt( s.length-1 );\r\n\t\t\t\tif (c < 0x30 || c > 0x39)\r\n\t\t\t\t{\r\n\t\t\t\t\treturn s;\r\n\t\t\t\t}\r\n\t\t\t\treturn s+\"px\";\r\n\t\t\t}\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Get the width of a scroll bar in this browser being used\r\n\t\t\t * @returns {int} width in pixels\r\n\t\t\t * @memberof DataTable#oApi\r\n\t\t\t */\r\n\t\t\tfunction _fnScrollBarWidth ()\r\n\t\t\t{\r\n\t\t\t\tvar inner = document.createElement('p');\r\n\t\t\t\tvar style = inner.style;\r\n\t\t\t\tstyle.width = \"100%\";\r\n\t\t\t\tstyle.height = \"200px\";\r\n\t\t\t\tstyle.padding = \"0px\";\r\n\r\n\t\t\t\tvar outer = document.createElement('div');\r\n\t\t\t\tstyle = outer.style;\r\n\t\t\t\tstyle.position = \"absolute\";\r\n\t\t\t\tstyle.top = \"0px\";\r\n\t\t\t\tstyle.left = \"0px\";\r\n\t\t\t\tstyle.visibility = \"hidden\";\r\n\t\t\t\tstyle.width = \"200px\";\r\n\t\t\t\tstyle.height = \"150px\";\r\n\t\t\t\tstyle.padding = \"0px\";\r\n\t\t\t\tstyle.overflow = \"hidden\";\r\n\t\t\t\touter.appendChild(inner);\r\n\r\n\t\t\t\tdocument.body.appendChild(outer);\r\n\t\t\t\tvar w1 = inner.offsetWidth;\r\n\t\t\t\touter.style.overflow = 'scroll';\r\n\t\t\t\tvar w2 = inner.offsetWidth;\r\n\t\t\t\tif ( w1 == w2 )\r\n\t\t\t\t{\r\n\t\t\t\t\tw2 = outer.clientWidth;\r\n\t\t\t\t}\r\n\r\n\t\t\t\tdocument.body.removeChild(outer);\r\n\t\t\t\treturn (w1 - w2);\r\n\t\t\t}\r\n\r\n\t\t\t/**\r\n\t\t\t * Change the order of the table\r\n\t\t\t * @param {object} oSettings dataTables settings object\r\n\t\t\t * @param {bool} bApplyClasses optional - should we apply classes or not\r\n\t\t\t * @memberof DataTable#oApi\r\n\t\t\t */\r\n\t\t\tfunction _fnSort ( oSettings, bApplyClasses )\r\n\t\t\t{\r\n\t\t\t\tvar\r\n\t\t\t\t\ti, iLen, j, jLen, k, kLen,\r\n\t\t\t\t\tsDataType, nTh,\r\n\t\t\t\t\taaSort = [],\r\n\t\t\t\t\taiOrig = [],\r\n\t\t\t\t\toSort = DataTable.ext.oSort,\r\n\t\t\t\t\taoData = oSettings.aoData,\r\n\t\t\t\t\taoColumns = oSettings.aoColumns,\r\n\t\t\t\t\toAria = oSettings.oLanguage.oAria;\r\n\r\n\t\t\t\t/* No sorting required if server-side or no sorting array */\r\n\t\t\t\tif ( !oSettings.oFeatures.bServerSide &&\r\n\t\t\t\t\t(oSettings.aaSorting.length !== 0 || oSettings.aaSortingFixed !== null) )\r\n\t\t\t\t{\r\n\t\t\t\t\taaSort = ( oSettings.aaSortingFixed !== null ) ?\r\n\t\t\t\t\t\toSettings.aaSortingFixed.concat( oSettings.aaSorting ) :\r\n\t\t\t\t\t\toSettings.aaSorting.slice();\r\n\r\n\t\t\t\t\t/* If there is a sorting data type, and a function belonging to it, then we need to\r\n\t\t\t\t\t * get the data from the developer's function and apply it for this column\r\n\t\t\t\t\t */\r\n\t\t\t\t\tfor ( i=0 ; i/g, \"\" );\r\n\t\t\t\t\tnTh = aoColumns[i].nTh;\r\n\t\t\t\t\tnTh.removeAttribute('aria-sort');\r\n\t\t\t\t\tnTh.removeAttribute('aria-label');\r\n\r\n\t\t\t\t\t/* In ARIA only the first sorting column can be marked as sorting - no multi-sort option */\r\n\t\t\t\t\tif ( aoColumns[i].bSortable )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\tif ( aaSort.length > 0 && aaSort[0][0] == i )\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\tnTh.setAttribute('aria-sort', aaSort[0][1]==\"asc\" ? \"ascending\" : \"descending\" );\r\n\r\n\t\t\t\t\t\t\tvar nextSort = (aoColumns[i].asSorting[ aaSort[0][2]+1 ]) ?\r\n\t\t\t\t\t\t\t\taoColumns[i].asSorting[ aaSort[0][2]+1 ] : aoColumns[i].asSorting[0];\r\n\t\t\t\t\t\t\tnTh.setAttribute('aria-label', sTitle+\r\n\t\t\t\t\t\t\t\t(nextSort==\"asc\" ? oAria.sSortAscending : oAria.sSortDescending) );\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t\telse\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\tnTh.setAttribute('aria-label', sTitle+\r\n\t\t\t\t\t\t\t\t(aoColumns[i].asSorting[0]==\"asc\" ? oAria.sSortAscending : oAria.sSortDescending) );\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\t\telse\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\tnTh.setAttribute('aria-label', sTitle);\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\r\n\t\t\t\t/* Tell the draw function that we have sorted the data */\r\n\t\t\t\toSettings.bSorted = true;\r\n\t\t\t\t$(oSettings.oInstance).trigger('sort', oSettings);\r\n\r\n\t\t\t\t/* Copy the master data into the draw array and re-draw */\r\n\t\t\t\tif ( oSettings.oFeatures.bFilter )\r\n\t\t\t\t{\r\n\t\t\t\t\t/* _fnFilter() will redraw the table for us */\r\n\t\t\t\t\t_fnFilterComplete( oSettings, oSettings.oPreviousSearch, 1 );\r\n\t\t\t\t}\r\n\t\t\t\telse\r\n\t\t\t\t{\r\n\t\t\t\t\toSettings.aiDisplay = oSettings.aiDisplayMaster.slice();\r\n\t\t\t\t\toSettings._iDisplayStart = 0; /* reset display back to page 0 */\r\n\t\t\t\t\t_fnCalculateEnd( oSettings );\r\n\t\t\t\t\t_fnDraw( oSettings );\r\n\t\t\t\t}\r\n\t\t\t}\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Attach a sort handler (click) to a node\r\n\t\t\t * @param {object} oSettings dataTables settings object\r\n\t\t\t * @param {node} nNode node to attach the handler to\r\n\t\t\t * @param {int} iDataIndex column sorting index\r\n\t\t\t * @param {function} [fnCallback] callback function\r\n\t\t\t * @memberof DataTable#oApi\r\n\t\t\t */\r\n\t\t\tfunction _fnSortAttachListener ( oSettings, nNode, iDataIndex, fnCallback )\r\n\t\t\t{\r\n\t\t\t\t_fnBindAction( nNode, {}, function (e) {\r\n\t\t\t\t\t/* If the column is not sortable - don't to anything */\r\n\t\t\t\t\tif ( oSettings.aoColumns[iDataIndex].bSortable === false )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\treturn;\r\n\t\t\t\t\t}\r\n\r\n\t\t\t\t\t/*\r\n\t\t\t\t\t * This is a little bit odd I admit... I declare a temporary function inside the scope of\r\n\t\t\t\t\t * _fnBuildHead and the click handler in order that the code presented here can be used \r\n\t\t\t\t\t * twice - once for when bProcessing is enabled, and another time for when it is \r\n\t\t\t\t\t * disabled, as we need to perform slightly different actions.\r\n\t\t\t\t\t * Basically the issue here is that the Javascript engine in modern browsers don't \r\n\t\t\t\t\t * appear to allow the rendering engine to update the display while it is still executing\r\n\t\t\t\t\t * it's thread (well - it does but only after long intervals). This means that the \r\n\t\t\t\t\t * 'processing' display doesn't appear for a table sort. To break the js thread up a bit\r\n\t\t\t\t\t * I force an execution break by using setTimeout - but this breaks the expected \r\n\t\t\t\t\t * thread continuation for the end-developer's point of view (their code would execute\r\n\t\t\t\t\t * too early), so we only do it when we absolutely have to.\r\n\t\t\t\t\t */\r\n\t\t\t\t\tvar fnInnerSorting = function () {\r\n\t\t\t\t\t\tvar iColumn, iNextSort;\r\n\r\n\t\t\t\t\t\t/* If the shift key is pressed then we are multiple column sorting */\r\n\t\t\t\t\t\tif ( e.shiftKey )\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t/* Are we already doing some kind of sort on this column? */\r\n\t\t\t\t\t\t\tvar bFound = false;\r\n\t\t\t\t\t\t\tfor ( var i=0 ; i 0 && sCurrentClass.indexOf(sNewClass) == -1 )\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t/* We need to add a class */\r\n\t\t\t\t\t\t\tnTds[i].className = sCurrentClass + \" \" + sNewClass;\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t}\r\n\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Save the state of a table in a cookie such that the page can be reloaded\r\n\t\t\t * @param {object} oSettings dataTables settings object\r\n\t\t\t * @memberof DataTable#oApi\r\n\t\t\t */\r\n\t\t\tfunction _fnSaveState ( oSettings )\r\n\t\t\t{\r\n\t\t\t\tif ( !oSettings.oFeatures.bStateSave || oSettings.bDestroying )\r\n\t\t\t\t{\r\n\t\t\t\t\treturn;\r\n\t\t\t\t}\r\n\r\n\t\t\t\t/* Store the interesting variables */\r\n\t\t\t\tvar i, iLen, bInfinite=oSettings.oScroll.bInfinite;\r\n\t\t\t\tvar oState = {\r\n\t\t\t\t\t\"iCreate\": new Date().getTime(),\r\n\t\t\t\t\t\"iStart\": (bInfinite ? 0 : oSettings._iDisplayStart),\r\n\t\t\t\t\t\"iEnd\": (bInfinite ? oSettings._iDisplayLength : oSettings._iDisplayEnd),\r\n\t\t\t\t\t\"iLength\": oSettings._iDisplayLength,\r\n\t\t\t\t\t\"aaSorting\": $.extend( true, [], oSettings.aaSorting ),\r\n\t\t\t\t\t\"oSearch\": $.extend( true, {}, oSettings.oPreviousSearch ),\r\n\t\t\t\t\t\"aoSearchCols\": $.extend( true, [], oSettings.aoPreSearchCols ),\r\n\t\t\t\t\t\"abVisCols\": []\r\n\t\t\t\t};\r\n\r\n\t\t\t\tfor ( i=0, iLen=oSettings.aoColumns.length ; i 4096 ) /* Magic 10 for padding */\r\n\t\t\t\t{\r\n\t\t\t\t\tfor ( var i=0, iLen=aCookies.length ; i 4096 ) {\r\n\t\t\t\t\t\tif ( aOldCookies.length === 0 ) {\r\n\t\t\t\t\t\t\t// Deleted all DT cookies and still not enough space. Can't state save\r\n\t\t\t\t\t\t\treturn;\r\n\t\t\t\t\t\t}\r\n\r\n\t\t\t\t\t\tvar old = aOldCookies.pop();\r\n\t\t\t\t\t\tdocument.cookie = old.name+\"=; expires=Thu, 01-Jan-1970 00:00:01 GMT; path=\"+\r\n\t\t\t\t\t\t\taParts.join('/') + \"/\";\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\r\n\t\t\t\tdocument.cookie = sFullCookie;\r\n\t\t\t}\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Read an old cookie to get a cookie with an old table state\r\n\t\t\t * @param {string} sName name of the cookie to read\r\n\t\t\t * @returns {string} contents of the cookie - or null if no cookie with that name found\r\n\t\t\t * @memberof DataTable#oApi\r\n\t\t\t */\r\n\t\t\tfunction _fnReadCookie ( sName )\r\n\t\t\t{\r\n\t\t\t\tvar\r\n\t\t\t\t\taParts = window.location.pathname.split('/'),\r\n\t\t\t\t\tsNameEQ = sName + '_' + aParts[aParts.length-1].replace(/[\\/:]/g,\"\").toLowerCase() + '=',\r\n\t\t\t\t\tsCookieContents = document.cookie.split(';');\r\n\r\n\t\t\t\tfor( var i=0 ; i=0 ; i-- )\r\n\t\t\t\t{\r\n\t\t\t\t\taRet.push( aoStore[i].fn.apply( oSettings.oInstance, aArgs ) );\r\n\t\t\t\t}\r\n\r\n\t\t\t\tif ( sTrigger !== null )\r\n\t\t\t\t{\r\n\t\t\t\t\t$(oSettings.oInstance).trigger(sTrigger, aArgs);\r\n\t\t\t\t}\r\n\r\n\t\t\t\treturn aRet;\r\n\t\t\t}\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * JSON stringify. If JSON.stringify it provided by the browser, json2.js or any other\r\n\t\t\t * library, then we use that as it is fast, safe and accurate. If the function isn't\r\n\t\t\t * available then we need to built it ourselves - the inspiration for this function comes\r\n\t\t\t * from Craig Buckler ( http://www.sitepoint.com/javascript-json-serialization/ ). It is\r\n\t\t\t * not perfect and absolutely should not be used as a replacement to json2.js - but it does\r\n\t\t\t * do what we need, without requiring a dependency for DataTables.\r\n\t\t\t * @param {object} o JSON object to be converted\r\n\t\t\t * @returns {string} JSON string\r\n\t\t\t * @memberof DataTable#oApi\r\n\t\t\t */\r\n\t\t\tvar _fnJsonString = (window.JSON) ? JSON.stringify : function( o )\r\n\t\t\t{\r\n\t\t\t\t/* Not an object or array */\r\n\t\t\t\tvar sType = typeof o;\r\n\t\t\t\tif (sType !== \"object\" || o === null)\r\n\t\t\t\t{\r\n\t\t\t\t\t// simple data type\r\n\t\t\t\t\tif (sType === \"string\")\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\to = '\"'+o+'\"';\r\n\t\t\t\t\t}\r\n\t\t\t\t\treturn o+\"\";\r\n\t\t\t\t}\r\n\r\n\t\t\t\t/* If object or array, need to recurse over it */\r\n\t\t\t\tvar\r\n\t\t\t\t\tsProp, mValue,\r\n\t\t\t\t\tjson = [],\r\n\t\t\t\t\tbArr = $.isArray(o);\r\n\r\n\t\t\t\tfor (sProp in o)\r\n\t\t\t\t{\r\n\t\t\t\t\tmValue = o[sProp];\r\n\t\t\t\t\tsType = typeof mValue;\r\n\r\n\t\t\t\t\tif (sType === \"string\")\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\tmValue = '\"'+mValue+'\"';\r\n\t\t\t\t\t}\r\n\t\t\t\t\telse if (sType === \"object\" && mValue !== null)\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\tmValue = _fnJsonString(mValue);\r\n\t\t\t\t\t}\r\n\r\n\t\t\t\t\tjson.push((bArr ? \"\" : '\"'+sProp+'\":') + mValue);\r\n\t\t\t\t}\r\n\r\n\t\t\t\treturn (bArr ? \"[\" : \"{\") + json + (bArr ? \"]\" : \"}\");\r\n\t\t\t};\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * From some browsers (specifically IE6/7) we need special handling to work around browser\r\n\t\t\t * bugs - this function is used to detect when these workarounds are needed.\r\n\t\t\t * @param {object} oSettings dataTables settings object\r\n\t\t\t * @memberof DataTable#oApi\r\n\t\t\t */\r\n\t\t\tfunction _fnBrowserDetect( oSettings )\r\n\t\t\t{\r\n\t\t\t\t/* IE6/7 will oversize a width 100% element inside a scrolling element, to include the\r\n\t\t\t\t * width of the scrollbar, while other browsers ensure the inner element is contained\r\n\t\t\t\t * without forcing scrolling\r\n\t\t\t\t */\r\n\t\t\t\tvar n = $(\r\n\t\t\t\t\t'
'+\r\n\t\t\t\t\t\t'
'+\r\n\t\t\t\t\t\t''+\r\n\t\t\t\t\t\t'
'+\r\n\t\t\t\t\t\t'
')[0];\r\n\r\n\t\t\t\tdocument.body.appendChild( n );\r\n\t\t\t\toSettings.oBrowser.bScrollOversize = $('#DT_BrowserTest', n)[0].offsetWidth === 100 ? true : false;\r\n\t\t\t\tdocument.body.removeChild( n );\r\n\t\t\t}\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Perform a jQuery selector action on the table's TR elements (from the tbody) and\r\n\t\t\t * return the resulting jQuery object.\r\n\t\t\t * @param {string|node|jQuery} sSelector jQuery selector or node collection to act on\r\n\t\t\t * @param {object} [oOpts] Optional parameters for modifying the rows to be included\r\n\t\t\t * @param {string} [oOpts.filter=none] Select TR elements that meet the current filter\r\n\t\t\t * criterion (\"applied\") or all TR elements (i.e. no filter).\r\n\t\t\t * @param {string} [oOpts.order=current] Order of the TR elements in the processed array.\r\n\t\t\t * Can be either 'current', whereby the current sorting of the table is used, or\r\n\t\t\t * 'original' whereby the original order the data was read into the table is used.\r\n\t\t\t * @param {string} [oOpts.page=all] Limit the selection to the currently displayed page\r\n\t\t\t * (\"current\") or not (\"all\"). If 'current' is given, then order is assumed to be\r\n\t\t\t * 'current' and filter is 'applied', regardless of what they might be given as.\r\n\t\t\t * @returns {object} jQuery object, filtered by the given selector.\r\n\t\t\t * @dtopt API\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * $(document).ready(function() {\r\n\t\t * var oTable = $('#example').dataTable();\r\n\t\t *\r\n\t\t * // Highlight every second row\r\n\t\t * oTable.$('tr:odd').css('backgroundColor', 'blue');\r\n\t\t * } );\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * $(document).ready(function() {\r\n\t\t * var oTable = $('#example').dataTable();\r\n\t\t *\r\n\t\t * // Filter to rows with 'Webkit' in them, add a background colour and then\r\n\t\t * // remove the filter, thus highlighting the 'Webkit' rows only.\r\n\t\t * oTable.fnFilter('Webkit');\r\n\t\t * oTable.$('tr', {\"filter\": \"applied\"}).css('backgroundColor', 'blue');\r\n\t\t * oTable.fnFilter('');\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\tthis.$ = function ( sSelector, oOpts )\r\n\t\t\t{\r\n\t\t\t\tvar i, iLen, a = [], tr;\r\n\t\t\t\tvar oSettings = _fnSettingsFromNode( this[DataTable.ext.iApiIndex] );\r\n\t\t\t\tvar aoData = oSettings.aoData;\r\n\t\t\t\tvar aiDisplay = oSettings.aiDisplay;\r\n\t\t\t\tvar aiDisplayMaster = oSettings.aiDisplayMaster;\r\n\r\n\t\t\t\tif ( !oOpts )\r\n\t\t\t\t{\r\n\t\t\t\t\toOpts = {};\r\n\t\t\t\t}\r\n\r\n\t\t\t\toOpts = $.extend( {}, {\r\n\t\t\t\t\t\"filter\": \"none\", // applied\r\n\t\t\t\t\t\"order\": \"current\", // \"original\"\r\n\t\t\t\t\t\"page\": \"all\" // current\r\n\t\t\t\t}, oOpts );\r\n\r\n\t\t\t\t// Current page implies that order=current and fitler=applied, since it is fairly\r\n\t\t\t\t// senseless otherwise\r\n\t\t\t\tif ( oOpts.page == 'current' )\r\n\t\t\t\t{\r\n\t\t\t\t\tfor ( i=oSettings._iDisplayStart, iLen=oSettings.fnDisplayEnd() ; i\r\n\t\t\t *
1D array of data - add a single row with the data provided
\r\n\t\t\t *
2D array of arrays - add multiple rows in a single call
\r\n\t\t\t *
object - data object when using mData
\r\n\t\t\t *
array of objects - multiple data objects when using mData
\r\n\t\t\t * \r\n\t\t\t * @param {bool} [bRedraw=true] redraw the table or not\r\n\t\t\t * @returns {array} An array of integers, representing the list of indexes in\r\n\t\t\t * aoData ({@link DataTable.models.oSettings}) that have been added to\r\n\t\t\t * the table.\r\n\t\t\t * @dtopt API\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * // Global var for counter\r\n\t\t\t * var giCount = 2;\r\n\t\t\t *\r\n\t\t\t * $(document).ready(function() {\r\n\t\t * $('#example').dataTable();\r\n\t\t * } );\r\n\t\t\t *\r\n\t\t\t * function fnClickAddRow() {\r\n\t\t * $('#example').dataTable().fnAddData( [\r\n\t\t * giCount+\".1\",\r\n\t\t * giCount+\".2\",\r\n\t\t * giCount+\".3\",\r\n\t\t * giCount+\".4\" ]\r\n\t\t * );\r\n\t\t * \r\n\t\t * giCount++;\r\n\t\t * }\r\n\t\t\t */\r\n\t\t\tthis.fnAddData = function( mData, bRedraw )\r\n\t\t\t{\r\n\t\t\t\tif ( mData.length === 0 )\r\n\t\t\t\t{\r\n\t\t\t\t\treturn [];\r\n\t\t\t\t}\r\n\r\n\t\t\t\tvar aiReturn = [];\r\n\t\t\t\tvar iTest;\r\n\r\n\t\t\t\t/* Find settings from table node */\r\n\t\t\t\tvar oSettings = _fnSettingsFromNode( this[DataTable.ext.iApiIndex] );\r\n\r\n\t\t\t\t/* Check if we want to add multiple rows or not */\r\n\t\t\t\tif ( typeof mData[0] === \"object\" && mData[0] !== null )\r\n\t\t\t\t{\r\n\t\t\t\t\tfor ( var i=0 ; i= oSettings.fnRecordsDisplay() )\r\n\t\t\t\t{\r\n\t\t\t\t\toSettings._iDisplayStart -= oSettings._iDisplayLength;\r\n\t\t\t\t\tif ( oSettings._iDisplayStart < 0 )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\toSettings._iDisplayStart = 0;\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\r\n\t\t\t\tif ( bRedraw === undefined || bRedraw )\r\n\t\t\t\t{\r\n\t\t\t\t\t_fnCalculateEnd( oSettings );\r\n\t\t\t\t\t_fnDraw( oSettings );\r\n\t\t\t\t}\r\n\r\n\t\t\t\treturn oData;\r\n\t\t\t};\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Restore the table to it's original state in the DOM by removing all of DataTables\r\n\t\t\t * enhancements, alterations to the DOM structure of the table and event listeners.\r\n\t\t\t * @param {boolean} [bRemove=false] Completely remove the table from the DOM\r\n\t\t\t * @dtopt API\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * $(document).ready(function() {\r\n\t\t * // This example is fairly pointless in reality, but shows how fnDestroy can be used\r\n\t\t * var oTable = $('#example').dataTable();\r\n\t\t * oTable.fnDestroy();\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\tthis.fnDestroy = function ( bRemove )\r\n\t\t\t{\r\n\t\t\t\tvar oSettings = _fnSettingsFromNode( this[DataTable.ext.iApiIndex] );\r\n\t\t\t\tvar nOrig = oSettings.nTableWrapper.parentNode;\r\n\t\t\t\tvar nBody = oSettings.nTBody;\r\n\t\t\t\tvar i, iLen;\r\n\r\n\t\t\t\tbRemove = (bRemove===undefined) ? false : bRemove;\r\n\r\n\t\t\t\t/* Flag to note that the table is currently being destroyed - no action should be taken */\r\n\t\t\t\toSettings.bDestroying = true;\r\n\r\n\t\t\t\t/* Fire off the destroy callbacks for plug-ins etc */\r\n\t\t\t\t_fnCallbackFire( oSettings, \"aoDestroyCallback\", \"destroy\", [oSettings] );\r\n\r\n\t\t\t\t/* If the table is not being removed, restore the hidden columns */\r\n\t\t\t\tif ( !bRemove )\r\n\t\t\t\t{\r\n\t\t\t\t\tfor ( i=0, iLen=oSettings.aoColumns.length ; itr>td.'+oSettings.oClasses.sRowEmpty, oSettings.nTable).parent().remove();\r\n\r\n\t\t\t\t/* When scrolling we had to break the table up - restore it */\r\n\t\t\t\tif ( oSettings.nTable != oSettings.nTHead.parentNode )\r\n\t\t\t\t{\r\n\t\t\t\t\t$(oSettings.nTable).children('thead').remove();\r\n\t\t\t\t\toSettings.nTable.appendChild( oSettings.nTHead );\r\n\t\t\t\t}\r\n\r\n\t\t\t\tif ( oSettings.nTFoot && oSettings.nTable != oSettings.nTFoot.parentNode )\r\n\t\t\t\t{\r\n\t\t\t\t\t$(oSettings.nTable).children('tfoot').remove();\r\n\t\t\t\t\toSettings.nTable.appendChild( oSettings.nTFoot );\r\n\t\t\t\t}\r\n\r\n\t\t\t\t/* Remove the DataTables generated nodes, events and classes */\r\n\t\t\t\toSettings.nTable.parentNode.removeChild( oSettings.nTable );\r\n\t\t\t\t$(oSettings.nTableWrapper).remove();\r\n\r\n\t\t\t\toSettings.aaSorting = [];\r\n\t\t\t\toSettings.aaSortingFixed = [];\r\n\t\t\t\t_fnSortingClasses( oSettings );\r\n\r\n\t\t\t\t$(_fnGetTrNodes( oSettings )).removeClass( oSettings.asStripeClasses.join(' ') );\r\n\r\n\t\t\t\t$('th, td', oSettings.nTHead).removeClass( [\r\n\t\t\t\t\toSettings.oClasses.sSortable,\r\n\t\t\t\t\toSettings.oClasses.sSortableAsc,\r\n\t\t\t\t\toSettings.oClasses.sSortableDesc,\r\n\t\t\t\t\toSettings.oClasses.sSortableNone ].join(' ')\r\n\t\t\t\t);\r\n\t\t\t\tif ( oSettings.bJUI )\r\n\t\t\t\t{\r\n\t\t\t\t\t$('th span.'+oSettings.oClasses.sSortIcon\r\n\t\t\t\t\t\t+ ', td span.'+oSettings.oClasses.sSortIcon, oSettings.nTHead).remove();\r\n\r\n\t\t\t\t\t$('th, td', oSettings.nTHead).each( function () {\r\n\t\t\t\t\t\tvar jqWrapper = $('div.'+oSettings.oClasses.sSortJUIWrapper, this);\r\n\t\t\t\t\t\tvar kids = jqWrapper.contents();\r\n\t\t\t\t\t\t$(this).append( kids );\r\n\t\t\t\t\t\tjqWrapper.remove();\r\n\t\t\t\t\t} );\r\n\t\t\t\t}\r\n\r\n\t\t\t\t/* Add the TR elements back into the table in their original order */\r\n\t\t\t\tif ( !bRemove && oSettings.nTableReinsertBefore )\r\n\t\t\t\t{\r\n\t\t\t\t\tnOrig.insertBefore( oSettings.nTable, oSettings.nTableReinsertBefore );\r\n\t\t\t\t}\r\n\t\t\t\telse if ( !bRemove )\r\n\t\t\t\t{\r\n\t\t\t\t\tnOrig.appendChild( oSettings.nTable );\r\n\t\t\t\t}\r\n\r\n\t\t\t\tfor ( i=0, iLen=oSettings.aoData.length ; i= _fnVisbleColumns( oSettings ));\r\n\r\n\t\t\t\t\t/* Which coloumn should we be inserting before? */\r\n\t\t\t\t\tif ( !bAppend )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\tfor ( i=iCol ; it<\"F\"ip>';\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t\telse\r\n\t\t\t\t{\r\n\t\t\t\t\t$.extend( oSettings.oClasses, DataTable.ext.oStdClasses );\r\n\t\t\t\t}\r\n\t\t\t\t$(this).addClass( oSettings.oClasses.sTable );\r\n\r\n\t\t\t\t/* Calculate the scroll bar width and cache it for use later on */\r\n\t\t\t\tif ( oSettings.oScroll.sX !== \"\" || oSettings.oScroll.sY !== \"\" )\r\n\t\t\t\t{\r\n\t\t\t\t\toSettings.oScroll.iBarWidth = _fnScrollBarWidth();\r\n\t\t\t\t}\r\n\r\n\t\t\t\tif ( oSettings.iInitDisplayStart === undefined )\r\n\t\t\t\t{\r\n\t\t\t\t\t/* Display start point, taking into account the save saving */\r\n\t\t\t\t\toSettings.iInitDisplayStart = oInit.iDisplayStart;\r\n\t\t\t\t\toSettings._iDisplayStart = oInit.iDisplayStart;\r\n\t\t\t\t}\r\n\r\n\t\t\t\t/* Must be done after everything which can be overridden by a cookie! */\r\n\t\t\t\tif ( oInit.bStateSave )\r\n\t\t\t\t{\r\n\t\t\t\t\toSettings.oFeatures.bStateSave = true;\r\n\t\t\t\t\t_fnLoadState( oSettings, oInit );\r\n\t\t\t\t\t_fnCallbackReg( oSettings, 'aoDrawCallback', _fnSaveState, 'state_save' );\r\n\t\t\t\t}\r\n\r\n\t\t\t\tif ( oInit.iDeferLoading !== null )\r\n\t\t\t\t{\r\n\t\t\t\t\toSettings.bDeferLoading = true;\r\n\t\t\t\t\tvar tmp = $.isArray( oInit.iDeferLoading );\r\n\t\t\t\t\toSettings._iRecordsDisplay = tmp ? oInit.iDeferLoading[0] : oInit.iDeferLoading;\r\n\t\t\t\t\toSettings._iRecordsTotal = tmp ? oInit.iDeferLoading[1] : oInit.iDeferLoading;\r\n\t\t\t\t}\r\n\r\n\t\t\t\tif ( oInit.aaData !== null )\r\n\t\t\t\t{\r\n\t\t\t\t\tbUsePassedData = true;\r\n\t\t\t\t}\r\n\r\n\t\t\t\t/* Language definitions */\r\n\t\t\t\tif ( oInit.oLanguage.sUrl !== \"\" )\r\n\t\t\t\t{\r\n\t\t\t\t\t/* Get the language definitions from a file - because this Ajax call makes the language\r\n\t\t\t\t\t * get async to the remainder of this function we use bInitHandedOff to indicate that \r\n\t\t\t\t\t * _fnInitialise will be fired by the returned Ajax handler, rather than the constructor\r\n\t\t\t\t\t */\r\n\t\t\t\t\toSettings.oLanguage.sUrl = oInit.oLanguage.sUrl;\r\n\t\t\t\t\t$.getJSON( oSettings.oLanguage.sUrl, null, function( json ) {\r\n\t\t\t\t\t\t_fnLanguageCompat( json );\r\n\t\t\t\t\t\t$.extend( true, oSettings.oLanguage, oInit.oLanguage, json );\r\n\t\t\t\t\t\t_fnInitialise( oSettings );\r\n\t\t\t\t\t} );\r\n\t\t\t\t\tbInitHandedOff = true;\r\n\t\t\t\t}\r\n\t\t\t\telse\r\n\t\t\t\t{\r\n\t\t\t\t\t$.extend( true, oSettings.oLanguage, oInit.oLanguage );\r\n\t\t\t\t}\r\n\r\n\r\n\t\t\t\t/*\r\n\t\t\t\t * Stripes\r\n\t\t\t\t */\r\n\t\t\t\tif ( oInit.asStripeClasses === null )\r\n\t\t\t\t{\r\n\t\t\t\t\toSettings.asStripeClasses =[\r\n\t\t\t\t\t\toSettings.oClasses.sStripeOdd,\r\n\t\t\t\t\t\toSettings.oClasses.sStripeEven\r\n\t\t\t\t\t];\r\n\t\t\t\t}\r\n\r\n\t\t\t\t/* Remove row stripe classes if they are already on the table row */\r\n\t\t\t\tiLen=oSettings.asStripeClasses.length;\r\n\t\t\t\toSettings.asDestroyStripes = [];\r\n\t\t\t\tif (iLen)\r\n\t\t\t\t{\r\n\t\t\t\t\tvar bStripeRemove = false;\r\n\t\t\t\t\tvar anRows = $(this).children('tbody').children('tr:lt(' + iLen + ')');\r\n\t\t\t\t\tfor ( i=0 ; i= oSettings.aoColumns.length )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\toSettings.aaSorting[i][0] = 0;\r\n\t\t\t\t\t}\r\n\t\t\t\t\tvar oColumn = oSettings.aoColumns[ oSettings.aaSorting[i][0] ];\r\n\r\n\t\t\t\t\t/* Add a default sorting index */\r\n\t\t\t\t\tif ( oSettings.aaSorting[i][2] === undefined )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\toSettings.aaSorting[i][2] = 0;\r\n\t\t\t\t\t}\r\n\r\n\t\t\t\t\t/* If aaSorting is not defined, then we use the first indicator in asSorting */\r\n\t\t\t\t\tif ( oInit.aaSorting === undefined && oSettings.saved_aaSorting === undefined )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\toSettings.aaSorting[i][1] = oColumn.asSorting[0];\r\n\t\t\t\t\t}\r\n\r\n\t\t\t\t\t/* Set the current sorting index based on aoColumns.asSorting */\r\n\t\t\t\t\tfor ( j=0, jLen=oColumn.asSorting.length ; j 0 && (oSettings.oScroll.sX !== \"\" || oSettings.oScroll.sY !== \"\") )\r\n\t\t\t\t{\r\n\t\t\t\t\t// If we are a scrolling table, and no footer has been given, then we need to create\r\n\t\t\t\t\t// a tfoot element for the caption element to be appended to\r\n\t\t\t\t\ttfoot = [ document.createElement( 'tfoot' ) ];\r\n\t\t\t\t\tthis.appendChild( tfoot[0] );\r\n\t\t\t\t}\r\n\r\n\t\t\t\tif ( tfoot.length > 0 )\r\n\t\t\t\t{\r\n\t\t\t\t\toSettings.nTFoot = tfoot[0];\r\n\t\t\t\t\t_fnDetectHeader( oSettings.aoFooter, oSettings.nTFoot );\r\n\t\t\t\t}\r\n\r\n\t\t\t\t/* Check if there is data passing into the constructor */\r\n\t\t\t\tif ( bUsePassedData )\r\n\t\t\t\t{\r\n\t\t\t\t\tfor ( i=0 ; i= parseInt(sThat, 10);\r\n\t\t};\r\n\r\n\r\n\t\t/**\r\n\t\t * Check if a TABLE node is a DataTable table already or not.\r\n\t\t * @param {node} nTable The TABLE node to check if it is a DataTable or not (note that other\r\n\t\t * node types can be passed in, but will always return false).\r\n\t\t * @returns {boolean} true the table given is a DataTable, or false otherwise\r\n\t\t * @static\r\n\t\t * @dtopt API-Static\r\n\t\t *\r\n\t\t * @example\r\n\t\t * var ex = document.getElementById('example');\r\n\t\t * if ( ! $.fn.DataTable.fnIsDataTable( ex ) ) {\r\n\t * $(ex).dataTable();\r\n\t * }\r\n\t\t */\r\n\t\tDataTable.fnIsDataTable = function ( nTable )\r\n\t\t{\r\n\t\t\tvar o = DataTable.settings;\r\n\r\n\t\t\tfor ( var i=0 ; i 0 ) {\r\n\t * $(table).dataTable().fnAdjustColumnSizing();\r\n\t * }\r\n\t\t */\r\n\t\tDataTable.fnTables = function ( bVisible )\r\n\t\t{\r\n\t\t\tvar out = [];\r\n\r\n\t\t\tjQuery.each( DataTable.settings, function (i, o) {\r\n\t\t\t\tif ( !bVisible || (bVisible === true && $(o.nTable).is(':visible')) )\r\n\t\t\t\t{\r\n\t\t\t\t\tout.push( o.nTable );\r\n\t\t\t\t}\r\n\t\t\t} );\r\n\r\n\t\t\treturn out;\r\n\t\t};\r\n\r\n\r\n\t\t/**\r\n\t\t * Version string for plug-ins to check compatibility. Allowed format is\r\n\t\t * a.b.c.d.e where: a:int, b:int, c:int, d:string(dev|beta), e:int. d and\r\n\t\t * e are optional\r\n\t\t * @member\r\n\t\t * @type string\r\n\t\t * @default Version number\r\n\t\t */\r\n\t\tDataTable.version = \"1.9.4\";\r\n\r\n\t\t/**\r\n\t\t * Private data store, containing all of the settings objects that are created for the\r\n\t\t * tables on a given page.\r\n\t\t *\r\n\t\t * Note that the DataTable.settings object is aliased to jQuery.fn.dataTableExt\r\n\t\t * through which it may be accessed and manipulated, or jQuery.fn.dataTable.settings.\r\n\t\t * @member\r\n\t\t * @type array\r\n\t\t * @default []\r\n\t\t * @private\r\n\t\t */\r\n\t\tDataTable.settings = [];\r\n\r\n\t\t/**\r\n\t\t * Object models container, for the various models that DataTables has available\r\n\t\t * to it. These models define the objects that are used to hold the active state\r\n\t\t * and configuration of the table.\r\n\t\t * @namespace\r\n\t\t */\r\n\t\tDataTable.models = {};\r\n\r\n\r\n\t\t/**\r\n\t\t * DataTables extension options and plug-ins. This namespace acts as a collection \"area\"\r\n\t\t * for plug-ins that can be used to extend the default DataTables behaviour - indeed many\r\n\t\t * of the build in methods use this method to provide their own capabilities (sorting methods\r\n\t\t * for example).\r\n\t\t *\r\n\t\t * Note that this namespace is aliased to jQuery.fn.dataTableExt so it can be readily accessed\r\n\t\t * and modified by plug-ins.\r\n\t\t * @namespace\r\n\t\t */\r\n\t\tDataTable.models.ext = {\r\n\t\t\t/**\r\n\t\t\t * Plug-in filtering functions - this method of filtering is complimentary to the default\r\n\t\t\t * type based filtering, and a lot more comprehensive as it allows you complete control\r\n\t\t\t * over the filtering logic. Each element in this array is a function (parameters\r\n\t\t\t * described below) that is called for every row in the table, and your logic decides if\r\n\t\t\t * it should be included in the filtered data set or not.\r\n\t\t\t *
\r\n\t\t\t *
\r\n\t\t\t * Function input parameters:\r\n\t\t\t *
\r\n\t\t\t *
{object} DataTables settings object: see {@link DataTable.models.oSettings}.
\r\n\t\t\t *
{array|object} Data for the row to be processed (same as the original format\r\n\t\t\t * that was passed in as the data source, or an array from a DOM data source
\r\n\t\t\t *
{int} Row index in aoData ({@link DataTable.models.oSettings.aoData}), which can\r\n\t\t\t * be useful to retrieve the TR element if you need DOM interaction.
\r\n\t\t\t *
\r\n\t\t\t *
\r\n\t\t\t *
\r\n\t\t\t * Function return:\r\n\t\t\t *
\r\n\t\t\t *
{boolean} Include the row in the filtered result set (true) or not (false)
\r\n\t\t\t *
\r\n\t\t\t * \r\n\t\t\t *
\r\n\t\t\t * @type array\r\n\t\t\t * @default []\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * // The following example shows custom filtering being applied to the fourth column (i.e.\r\n\t\t\t * // the aData[3] index) based on two input values from the end-user, matching the data in\r\n\t\t\t * // a certain range.\r\n\t\t\t * $.fn.dataTableExt.afnFiltering.push(\r\n\t\t\t * function( oSettings, aData, iDataIndex ) {\r\n\t\t * var iMin = document.getElementById('min').value * 1;\r\n\t\t * var iMax = document.getElementById('max').value * 1;\r\n\t\t * var iVersion = aData[3] == \"-\" ? 0 : aData[3]*1;\r\n\t\t * if ( iMin == \"\" && iMax == \"\" ) {\r\n\t\t * return true;\r\n\t\t * }\r\n\t\t * else if ( iMin == \"\" && iVersion < iMax ) {\r\n\t\t * return true;\r\n\t\t * }\r\n\t\t * else if ( iMin < iVersion && \"\" == iMax ) {\r\n\t\t * return true;\r\n\t\t * }\r\n\t\t * else if ( iMin < iVersion && iVersion < iMax ) {\r\n\t\t * return true;\r\n\t\t * }\r\n\t\t * return false;\r\n\t\t * }\r\n\t\t\t * );\r\n\t\t\t */\r\n\t\t\t\"afnFiltering\": [],\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Plug-in sorting functions - this method of sorting is complimentary to the default type\r\n\t\t\t * based sorting that DataTables does automatically, allowing much greater control over the\r\n\t\t\t * the data that is being used to sort a column. This is useful if you want to do sorting\r\n\t\t\t * based on live data (for example the contents of an 'input' element) rather than just the\r\n\t\t\t * static string that DataTables knows of. The way these plug-ins work is that you create\r\n\t\t\t * an array of the values you wish to be sorted for the column in question and then return\r\n\t\t\t * that array. Which pre-sorting function is run here depends on the sSortDataType parameter\r\n\t\t\t * that is used for the column (if any). This is the corollary of ofnSearch for sort\r\n\t\t\t * data.\r\n\t\t\t *
\r\n\t\t\t *
\r\n\t\t\t * Function input parameters:\r\n\t\t\t *
\r\n\t\t\t *
{object} DataTables settings object: see {@link DataTable.models.oSettings}.
\r\n\t\t\t *
{int} Target column index
\r\n\t\t\t *
\r\n\t\t\t *
\r\n\t\t\t *
\r\n\t\t\t * Function return:\r\n\t\t\t *
\r\n\t\t\t *
{array} Data for the column to be sorted upon
\r\n\t\t\t *
\r\n\t\t\t * \r\n\t\t\t *
\r\n\t\t\t *\r\n\t\t\t * Note that as of v1.9, it is typically preferable to use mData to prepare data for\r\n\t\t\t * the different uses that DataTables can put the data to. Specifically mData when\r\n\t\t\t * used as a function will give you a 'type' (sorting, filtering etc) that you can use to\r\n\t\t\t * prepare the data as required for the different types. As such, this method is deprecated.\r\n\t\t\t * @type array\r\n\t\t\t * @default []\r\n\t\t\t * @deprecated\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * // Updating the cached sorting information with user entered values in HTML input elements\r\n\t\t\t * jQuery.fn.dataTableExt.afnSortData['dom-text'] = function ( oSettings, iColumn )\r\n\t\t\t * {\r\n\t\t * var aData = [];\r\n\t\t * $( 'td:eq('+iColumn+') input', oSettings.oApi._fnGetTrNodes(oSettings) ).each( function () {\r\n\t\t * aData.push( this.value );\r\n\t\t * } );\r\n\t\t * return aData;\r\n\t\t * }\r\n\t\t\t */\r\n\t\t\t\"afnSortData\": [],\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Feature plug-ins - This is an array of objects which describe the feature plug-ins that are\r\n\t\t\t * available to DataTables. These feature plug-ins are accessible through the sDom initialisation\r\n\t\t\t * option. As such, each feature plug-in must describe a function that is used to initialise\r\n\t\t\t * itself (fnInit), a character so the feature can be enabled by sDom (cFeature) and the name\r\n\t\t\t * of the feature (sFeature). Thus the objects attached to this method must provide:\r\n\t\t\t *
\r\n\t\t\t *
{function} fnInit Initialisation of the plug-in\r\n\t\t\t *
\r\n\t\t\t *
\r\n\t\t\t * Function input parameters:\r\n\t\t\t *
\r\n\t\t\t *
{object} DataTables settings object: see {@link DataTable.models.oSettings}.
\r\n\t\t\t *
\r\n\t\t\t *
\r\n\t\t\t *
\r\n\t\t\t * Function return:\r\n\t\t\t *
\r\n\t\t\t *
{node|null} The element which contains your feature. Note that the return\r\n\t\t\t * may also be void if your plug-in does not require to inject any DOM elements\r\n\t\t\t * into DataTables control (sDom) - for example this might be useful when\r\n\t\t\t * developing a plug-in which allows table control via keyboard entry.
\r\n\t\t\t *
\r\n\t\t\t * \r\n\t\t\t *
\r\n\t\t\t *
\r\n\t\t\t *
{character} cFeature Character that will be matched in sDom - case sensitive
\r\n\t\t\t *
{string} sFeature Feature name
\r\n\t\t\t *
\r\n\t\t\t * @type array\r\n\t\t\t * @default []\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * // How TableTools initialises itself.\r\n\t\t\t * $.fn.dataTableExt.aoFeatures.push( {\r\n\t\t * \"fnInit\": function( oSettings ) {\r\n\t\t * return new TableTools( { \"oDTSettings\": oSettings } );\r\n\t\t * },\r\n\t\t * \"cFeature\": \"T\",\r\n\t\t * \"sFeature\": \"TableTools\"\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"aoFeatures\": [],\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Type detection plug-in functions - DataTables utilises types to define how sorting and\r\n\t\t\t * filtering behave, and types can be either be defined by the developer (sType for the\r\n\t\t\t * column) or they can be automatically detected by the methods in this array. The functions\r\n\t\t\t * defined in the array are quite simple, taking a single parameter (the data to analyse)\r\n\t\t\t * and returning the type if it is a known type, or null otherwise.\r\n\t\t\t *
\r\n\t\t\t *
\r\n\t\t\t * Function input parameters:\r\n\t\t\t *
\r\n\t\t\t *
{*} Data from the column cell to be analysed
\r\n\t\t\t *
\r\n\t\t\t *
\r\n\t\t\t *
\r\n\t\t\t * Function return:\r\n\t\t\t *
\r\n\t\t\t *
{string|null} Data type detected, or null if unknown (and thus pass it\r\n\t\t\t * on to the other type detection functions.
\r\n\t\t\t *
\r\n\t\t\t * \r\n\t\t\t *
\r\n\t\t\t * @type array\r\n\t\t\t * @default []\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * // Currency type detection plug-in:\r\n\t\t\t * jQuery.fn.dataTableExt.aTypes.push(\r\n\t\t\t * function ( sData ) {\r\n\t\t * var sValidChars = \"0123456789.-\";\r\n\t\t * var Char;\r\n\t\t * \r\n\t\t * // Check the numeric part\r\n\t\t * for ( i=1 ; iafnSortData for filtering data.\r\n\t\t\t *
\r\n\t\t\t *
\r\n\t\t\t * Function input parameters:\r\n\t\t\t *
\r\n\t\t\t *
{*} Data from the column cell to be prepared for filtering
\r\n\t\t\t *
\r\n\t\t\t *
\r\n\t\t\t *
\r\n\t\t\t * Function return:\r\n\t\t\t *
\r\n\t\t\t *
{string|null} Formatted string that will be used for the filtering.
\r\n\t\t\t *
\r\n\t\t\t * \r\n\t\t\t *
\r\n\t\t\t *\r\n\t\t\t * Note that as of v1.9, it is typically preferable to use mData to prepare data for\r\n\t\t\t * the different uses that DataTables can put the data to. Specifically mData when\r\n\t\t\t * used as a function will give you a 'type' (sorting, filtering etc) that you can use to\r\n\t\t\t * prepare the data as required for the different types. As such, this method is deprecated.\r\n\t\t\t * @type object\r\n\t\t\t * @default {}\r\n\t\t\t * @deprecated\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * $.fn.dataTableExt.ofnSearch['title-numeric'] = function ( sData ) {\r\n\t\t * return sData.replace(/\\n/g,\" \").replace( /<.*?>/g, \"\" );\r\n\t\t * }\r\n\t\t\t */\r\n\t\t\t\"ofnSearch\": {},\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Container for all private functions in DataTables so they can be exposed externally\r\n\t\t\t * @type object\r\n\t\t\t * @default {}\r\n\t\t\t */\r\n\t\t\t\"oApi\": {},\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Storage for the various classes that DataTables uses\r\n\t\t\t * @type object\r\n\t\t\t * @default {}\r\n\t\t\t */\r\n\t\t\t\"oStdClasses\": {},\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Storage for the various classes that DataTables uses - jQuery UI suitable\r\n\t\t\t * @type object\r\n\t\t\t * @default {}\r\n\t\t\t */\r\n\t\t\t\"oJUIClasses\": {},\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Pagination plug-in methods - The style and controls of the pagination can significantly\r\n\t\t\t * impact on how the end user interacts with the data in your table, and DataTables allows\r\n\t\t\t * the addition of pagination controls by extending this object, which can then be enabled\r\n\t\t\t * through the sPaginationType initialisation parameter. Each pagination type that\r\n\t\t\t * is added is an object (the property name of which is what sPaginationType refers\r\n\t\t\t * to) that has two properties, both methods that are used by DataTables to update the\r\n\t\t\t * control's state.\r\n\t\t\t *
\r\n\t\t\t *
\r\n\t\t\t * fnInit - Initialisation of the paging controls. Called only during initialisation\r\n\t\t\t * of the table. It is expected that this function will add the required DOM elements\r\n\t\t\t * to the page for the paging controls to work. The element pointer\r\n\t\t\t * 'oSettings.aanFeatures.p' array is provided by DataTables to contain the paging\r\n\t\t\t * controls (note that this is a 2D array to allow for multiple instances of each\r\n\t\t\t * DataTables DOM element). It is suggested that you add the controls to this element\r\n\t\t\t * as children\r\n\t\t\t *
\r\n\t\t\t *
\r\n\t\t\t * Function input parameters:\r\n\t\t\t *
\r\n\t\t\t *
{object} DataTables settings object: see {@link DataTable.models.oSettings}.
\r\n\t\t\t *
{node} Container into which the pagination controls must be inserted
\r\n\t\t\t *
{function} Draw callback function - whenever the controls cause a page\r\n\t\t\t * change, this method must be called to redraw the table.
\r\n\t\t\t *
\r\n\t\t\t *
\r\n\t\t\t *
\r\n\t\t\t * Function return:\r\n\t\t\t *
\r\n\t\t\t *
No return required
\r\n\t\t\t *
\r\n\t\t\t * \r\n\t\t\t *
\r\n\t\t\t * \r\n\t\t\t *
\r\n\t\t\t * fnInit - This function is called whenever the paging status of the table changes and is\r\n\t\t\t * typically used to update classes and/or text of the paging controls to reflex the new\r\n\t\t\t * status.\r\n\t\t\t *
\r\n\t\t\t *
\r\n\t\t\t * Function input parameters:\r\n\t\t\t *
\r\n\t\t\t *
{object} DataTables settings object: see {@link DataTable.models.oSettings}.
\r\n\t\t\t *
{function} Draw callback function - in case you need to redraw the table again\r\n\t\t\t * or attach new event listeners
\r\n\t\t\t * Function input parameters:\r\n\t\t\t *
\r\n\t\t\t *
{*} Data to compare to the second parameter
\r\n\t\t\t *
{*} Data to compare to the first parameter
\r\n\t\t\t *
\r\n\t\t\t *
\r\n\t\t\t *
\r\n\t\t\t * Function return:\r\n\t\t\t *
\r\n\t\t\t *
{int} Sorting match: <0 if first parameter should be sorted lower than\r\n\t\t\t * the second parameter, ===0 if the two parameters are equal and >0 if\r\n\t\t\t * the first parameter should be sorted height than the second parameter.
\r\n\t\t\t *
\r\n\t\t\t * \r\n\t\t\t * \r\n\t\t\t * @type object\r\n\t\t\t * @default {}\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * // Case-sensitive string sorting, with no pre-formatting method\r\n\t\t\t * $.extend( $.fn.dataTableExt.oSort, {\r\n\t\t * \"string-case-asc\": function(x,y) {\r\n\t\t * return ((x < y) ? -1 : ((x > y) ? 1 : 0));\r\n\t\t * },\r\n\t\t * \"string-case-desc\": function(x,y) {\r\n\t\t * return ((x < y) ? 1 : ((x > y) ? -1 : 0));\r\n\t\t * }\r\n\t\t * } );\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * // Case-insensitive string sorting, with pre-formatting\r\n\t\t\t * $.extend( $.fn.dataTableExt.oSort, {\r\n\t\t * \"string-pre\": function(x) {\r\n\t\t * return x.toLowerCase();\r\n\t\t * },\r\n\t\t * \"string-asc\": function(x,y) {\r\n\t\t * return ((x < y) ? -1 : ((x > y) ? 1 : 0));\r\n\t\t * },\r\n\t\t * \"string-desc\": function(x,y) {\r\n\t\t * return ((x < y) ? 1 : ((x > y) ? -1 : 0));\r\n\t\t * }\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"oSort\": {},\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Version string for plug-ins to check compatibility. Allowed format is\r\n\t\t\t * a.b.c.d.e where: a:int, b:int, c:int, d:string(dev|beta), e:int. d and\r\n\t\t\t * e are optional\r\n\t\t\t * @type string\r\n\t\t\t * @default Version number\r\n\t\t\t */\r\n\t\t\t\"sVersion\": DataTable.version,\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * How should DataTables report an error. Can take the value 'alert' or 'throw'\r\n\t\t\t * @type string\r\n\t\t\t * @default alert\r\n\t\t\t */\r\n\t\t\t\"sErrMode\": \"alert\",\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Store information for DataTables to access globally about other instances\r\n\t\t\t * @namespace\r\n\t\t\t * @private\r\n\t\t\t */\r\n\t\t\t\"_oExternConfig\": {\r\n\t\t\t\t/* int:iNextUnique - next unique number for an instance */\r\n\t\t\t\t\"iNextUnique\": 0\r\n\t\t\t}\r\n\t\t};\r\n\r\n\r\n\r\n\r\n\t\t/**\r\n\t\t * Template object for the way in which DataTables holds information about\r\n\t\t * search information for the global filter and individual column filters.\r\n\t\t * @namespace\r\n\t\t */\r\n\t\tDataTable.models.oSearch = {\r\n\t\t\t/**\r\n\t\t\t * Flag to indicate if the filtering should be case insensitive or not\r\n\t\t\t * @type boolean\r\n\t\t\t * @default true\r\n\t\t\t */\r\n\t\t\t\"bCaseInsensitive\": true,\r\n\r\n\t\t\t/**\r\n\t\t\t * Applied search term\r\n\t\t\t * @type string\r\n\t\t\t * @default Empty string\r\n\t\t\t */\r\n\t\t\t\"sSearch\": \"\",\r\n\r\n\t\t\t/**\r\n\t\t\t * Flag to indicate if the search term should be interpreted as a\r\n\t\t\t * regular expression (true) or not (false) and therefore and special\r\n\t\t\t * regex characters escaped.\r\n\t\t\t * @type boolean\r\n\t\t\t * @default false\r\n\t\t\t */\r\n\t\t\t\"bRegex\": false,\r\n\r\n\t\t\t/**\r\n\t\t\t * Flag to indicate if DataTables is to use its smart filtering or not.\r\n\t\t\t * @type boolean\r\n\t\t\t * @default true\r\n\t\t\t */\r\n\t\t\t\"bSmart\": true\r\n\t\t};\r\n\r\n\r\n\r\n\r\n\t\t/**\r\n\t\t * Template object for the way in which DataTables holds information about\r\n\t\t * each individual row. This is the object format used for the settings\r\n\t\t * aoData array.\r\n\t\t * @namespace\r\n\t\t */\r\n\t\tDataTable.models.oRow = {\r\n\t\t\t/**\r\n\t\t\t * TR element for the row\r\n\t\t\t * @type node\r\n\t\t\t * @default null\r\n\t\t\t */\r\n\t\t\t\"nTr\": null,\r\n\r\n\t\t\t/**\r\n\t\t\t * Data object from the original data source for the row. This is either\r\n\t\t\t * an array if using the traditional form of DataTables, or an object if\r\n\t\t\t * using mData options. The exact type will depend on the passed in\r\n\t\t\t * data from the data source, or will be an array if using DOM a data\r\n\t\t\t * source.\r\n\t\t\t * @type array|object\r\n\t\t\t * @default []\r\n\t\t\t */\r\n\t\t\t\"_aData\": [],\r\n\r\n\t\t\t/**\r\n\t\t\t * Sorting data cache - this array is ostensibly the same length as the\r\n\t\t\t * number of columns (although each index is generated only as it is\r\n\t\t\t * needed), and holds the data that is used for sorting each column in the\r\n\t\t\t * row. We do this cache generation at the start of the sort in order that\r\n\t\t\t * the formatting of the sort data need be done only once for each cell\r\n\t\t\t * per sort. This array should not be read from or written to by anything\r\n\t\t\t * other than the master sorting methods.\r\n\t\t\t * @type array\r\n\t\t\t * @default []\r\n\t\t\t * @private\r\n\t\t\t */\r\n\t\t\t\"_aSortData\": [],\r\n\r\n\t\t\t/**\r\n\t\t\t * Array of TD elements that are cached for hidden rows, so they can be\r\n\t\t\t * reinserted into the table if a column is made visible again (or to act\r\n\t\t\t * as a store if a column is made hidden). Only hidden columns have a\r\n\t\t\t * reference in the array. For non-hidden columns the value is either\r\n\t\t\t * undefined or null.\r\n\t\t\t * @type array nodes\r\n\t\t\t * @default []\r\n\t\t\t * @private\r\n\t\t\t */\r\n\t\t\t\"_anHidden\": [],\r\n\r\n\t\t\t/**\r\n\t\t\t * Cache of the class name that DataTables has applied to the row, so we\r\n\t\t\t * can quickly look at this variable rather than needing to do a DOM check\r\n\t\t\t * on className for the nTr property.\r\n\t\t\t * @type string\r\n\t\t\t * @default Empty string\r\n\t\t\t * @private\r\n\t\t\t */\r\n\t\t\t\"_sRowStripe\": \"\"\r\n\t\t};\r\n\r\n\r\n\r\n\t\t/**\r\n\t\t * Template object for the column information object in DataTables. This object\r\n\t\t * is held in the settings aoColumns array and contains all the information that\r\n\t\t * DataTables needs about each individual column.\r\n\t\t *\r\n\t\t * Note that this object is related to {@link DataTable.defaults.columns}\r\n\t\t * but this one is the internal data store for DataTables's cache of columns.\r\n\t\t * It should NOT be manipulated outside of DataTables. Any configuration should\r\n\t\t * be done through the initialisation options.\r\n\t\t * @namespace\r\n\t\t */\r\n\t\tDataTable.models.oColumn = {\r\n\t\t\t/**\r\n\t\t\t * A list of the columns that sorting should occur on when this column\r\n\t\t\t * is sorted. That this property is an array allows multi-column sorting\r\n\t\t\t * to be defined for a column (for example first name / last name columns\r\n\t\t\t * would benefit from this). The values are integers pointing to the\r\n\t\t\t * columns to be sorted on (typically it will be a single integer pointing\r\n\t\t\t * at itself, but that doesn't need to be the case).\r\n\t\t\t * @type array\r\n\t\t\t */\r\n\t\t\t\"aDataSort\": null,\r\n\r\n\t\t\t/**\r\n\t\t\t * Define the sorting directions that are applied to the column, in sequence\r\n\t\t\t * as the column is repeatedly sorted upon - i.e. the first value is used\r\n\t\t\t * as the sorting direction when the column if first sorted (clicked on).\r\n\t\t\t * Sort it again (click again) and it will move on to the next index.\r\n\t\t\t * Repeat until loop.\r\n\t\t\t * @type array\r\n\t\t\t */\r\n\t\t\t\"asSorting\": null,\r\n\r\n\t\t\t/**\r\n\t\t\t * Flag to indicate if the column is searchable, and thus should be included\r\n\t\t\t * in the filtering or not.\r\n\t\t\t * @type boolean\r\n\t\t\t */\r\n\t\t\t\"bSearchable\": null,\r\n\r\n\t\t\t/**\r\n\t\t\t * Flag to indicate if the column is sortable or not.\r\n\t\t\t * @type boolean\r\n\t\t\t */\r\n\t\t\t\"bSortable\": null,\r\n\r\n\t\t\t/**\r\n\t\t\t * Deprecated When using fnRender, you have two options for what\r\n\t\t\t * to do with the data, and this property serves as the switch. Firstly, you\r\n\t\t\t * can have the sorting and filtering use the rendered value (true - default),\r\n\t\t\t * or you can have the sorting and filtering us the original value (false).\r\n\t\t\t *\r\n\t\t\t * Please note that this option has now been deprecated and will be removed\r\n\t\t\t * in the next version of DataTables. Please use mRender / mData rather than\r\n\t\t\t * fnRender.\r\n\t\t\t * @type boolean\r\n\t\t\t * @deprecated\r\n\t\t\t */\r\n\t\t\t\"bUseRendered\": null,\r\n\r\n\t\t\t/**\r\n\t\t\t * Flag to indicate if the column is currently visible in the table or not\r\n\t\t\t * @type boolean\r\n\t\t\t */\r\n\t\t\t\"bVisible\": null,\r\n\r\n\t\t\t/**\r\n\t\t\t * Flag to indicate to the type detection method if the automatic type\r\n\t\t\t * detection should be used, or if a column type (sType) has been specified\r\n\t\t\t * @type boolean\r\n\t\t\t * @default true\r\n\t\t\t * @private\r\n\t\t\t */\r\n\t\t\t\"_bAutoType\": true,\r\n\r\n\t\t\t/**\r\n\t\t\t * Developer definable function that is called whenever a cell is created (Ajax source,\r\n\t\t\t * etc) or processed for input (DOM source). This can be used as a compliment to mRender\r\n\t\t\t * allowing you to modify the DOM element (add background colour for example) when the\r\n\t\t\t * element is available.\r\n\t\t\t * @type function\r\n\t\t\t * @param {element} nTd The TD node that has been created\r\n\t\t\t * @param {*} sData The Data for the cell\r\n\t\t\t * @param {array|object} oData The data for the whole row\r\n\t\t\t * @param {int} iRow The row index for the aoData data store\r\n\t\t\t * @default null\r\n\t\t\t */\r\n\t\t\t\"fnCreatedCell\": null,\r\n\r\n\t\t\t/**\r\n\t\t\t * Function to get data from a cell in a column. You should never\r\n\t\t\t * access data directly through _aData internally in DataTables - always use\r\n\t\t\t * the method attached to this property. It allows mData to function as\r\n\t\t\t * required. This function is automatically assigned by the column\r\n\t\t\t * initialisation method\r\n\t\t\t * @type function\r\n\t\t\t * @param {array|object} oData The data array/object for the array\r\n\t\t\t * (i.e. aoData[]._aData)\r\n\t\t\t * @param {string} sSpecific The specific data type you want to get -\r\n\t\t\t * 'display', 'type' 'filter' 'sort'\r\n\t\t\t * @returns {*} The data for the cell from the given row's data\r\n\t\t\t * @default null\r\n\t\t\t */\r\n\t\t\t\"fnGetData\": null,\r\n\r\n\t\t\t/**\r\n\t\t\t * Deprecated Custom display function that will be called for the\r\n\t\t\t * display of each cell in this column.\r\n\t\t\t *\r\n\t\t\t * Please note that this option has now been deprecated and will be removed\r\n\t\t\t * in the next version of DataTables. Please use mRender / mData rather than\r\n\t\t\t * fnRender.\r\n\t\t\t * @type function\r\n\t\t\t * @param {object} o Object with the following parameters:\r\n\t\t\t * @param {int} o.iDataRow The row in aoData\r\n\t\t\t * @param {int} o.iDataColumn The column in question\r\n\t\t\t * @param {array} o.aData The data for the row in question\r\n\t\t\t * @param {object} o.oSettings The settings object for this DataTables instance\r\n\t\t\t * @returns {string} The string you which to use in the display\r\n\t\t\t * @default null\r\n\t\t\t * @deprecated\r\n\t\t\t */\r\n\t\t\t\"fnRender\": null,\r\n\r\n\t\t\t/**\r\n\t\t\t * Function to set data for a cell in the column. You should never\r\n\t\t\t * set the data directly to _aData internally in DataTables - always use\r\n\t\t\t * this method. It allows mData to function as required. This function\r\n\t\t\t * is automatically assigned by the column initialisation method\r\n\t\t\t * @type function\r\n\t\t\t * @param {array|object} oData The data array/object for the array\r\n\t\t\t * (i.e. aoData[]._aData)\r\n\t\t\t * @param {*} sValue Value to set\r\n\t\t\t * @default null\r\n\t\t\t */\r\n\t\t\t\"fnSetData\": null,\r\n\r\n\t\t\t/**\r\n\t\t\t * Property to read the value for the cells in the column from the data\r\n\t\t\t * source array / object. If null, then the default content is used, if a\r\n\t\t\t * function is given then the return from the function is used.\r\n\t\t\t * @type function|int|string|null\r\n\t\t\t * @default null\r\n\t\t\t */\r\n\t\t\t\"mData\": null,\r\n\r\n\t\t\t/**\r\n\t\t\t * Partner property to mData which is used (only when defined) to get\r\n\t\t\t * the data - i.e. it is basically the same as mData, but without the\r\n\t\t\t * 'set' option, and also the data fed to it is the result from mData.\r\n\t\t\t * This is the rendering method to match the data method of mData.\r\n\t\t\t * @type function|int|string|null\r\n\t\t\t * @default null\r\n\t\t\t */\r\n\t\t\t\"mRender\": null,\r\n\r\n\t\t\t/**\r\n\t\t\t * Unique header TH/TD element for this column - this is what the sorting\r\n\t\t\t * listener is attached to (if sorting is enabled.)\r\n\t\t\t * @type node\r\n\t\t\t * @default null\r\n\t\t\t */\r\n\t\t\t\"nTh\": null,\r\n\r\n\t\t\t/**\r\n\t\t\t * Unique footer TH/TD element for this column (if there is one). Not used\r\n\t\t\t * in DataTables as such, but can be used for plug-ins to reference the\r\n\t\t\t * footer for each column.\r\n\t\t\t * @type node\r\n\t\t\t * @default null\r\n\t\t\t */\r\n\t\t\t\"nTf\": null,\r\n\r\n\t\t\t/**\r\n\t\t\t * The class to apply to all TD elements in the table's TBODY for the column\r\n\t\t\t * @type string\r\n\t\t\t * @default null\r\n\t\t\t */\r\n\t\t\t\"sClass\": null,\r\n\r\n\t\t\t/**\r\n\t\t\t * When DataTables calculates the column widths to assign to each column,\r\n\t\t\t * it finds the longest string in each column and then constructs a\r\n\t\t\t * temporary table and reads the widths from that. The problem with this\r\n\t\t\t * is that \"mmm\" is much wider then \"iiii\", but the latter is a longer\r\n\t\t\t * string - thus the calculation can go wrong (doing it properly and putting\r\n\t\t\t * it into an DOM object and measuring that is horribly(!) slow). Thus as\r\n\t\t\t * a \"work around\" we provide this option. It will append its value to the\r\n\t\t\t * text that is found to be the longest string for the column - i.e. padding.\r\n\t\t\t * @type string\r\n\t\t\t */\r\n\t\t\t\"sContentPadding\": null,\r\n\r\n\t\t\t/**\r\n\t\t\t * Allows a default value to be given for a column's data, and will be used\r\n\t\t\t * whenever a null data source is encountered (this can be because mData\r\n\t\t\t * is set to null, or because the data source itself is null).\r\n\t\t\t * @type string\r\n\t\t\t * @default null\r\n\t\t\t */\r\n\t\t\t\"sDefaultContent\": null,\r\n\r\n\t\t\t/**\r\n\t\t\t * Name for the column, allowing reference to the column by name as well as\r\n\t\t\t * by index (needs a lookup to work by name).\r\n\t\t\t * @type string\r\n\t\t\t */\r\n\t\t\t\"sName\": null,\r\n\r\n\t\t\t/**\r\n\t\t\t * Custom sorting data type - defines which of the available plug-ins in\r\n\t\t\t * afnSortData the custom sorting will use - if any is defined.\r\n\t\t\t * @type string\r\n\t\t\t * @default std\r\n\t\t\t */\r\n\t\t\t\"sSortDataType\": 'std',\r\n\r\n\t\t\t/**\r\n\t\t\t * Class to be applied to the header element when sorting on this column\r\n\t\t\t * @type string\r\n\t\t\t * @default null\r\n\t\t\t */\r\n\t\t\t\"sSortingClass\": null,\r\n\r\n\t\t\t/**\r\n\t\t\t * Class to be applied to the header element when sorting on this column -\r\n\t\t\t * when jQuery UI theming is used.\r\n\t\t\t * @type string\r\n\t\t\t * @default null\r\n\t\t\t */\r\n\t\t\t\"sSortingClassJUI\": null,\r\n\r\n\t\t\t/**\r\n\t\t\t * Title of the column - what is seen in the TH element (nTh).\r\n\t\t\t * @type string\r\n\t\t\t */\r\n\t\t\t\"sTitle\": null,\r\n\r\n\t\t\t/**\r\n\t\t\t * Column sorting and filtering type\r\n\t\t\t * @type string\r\n\t\t\t * @default null\r\n\t\t\t */\r\n\t\t\t\"sType\": null,\r\n\r\n\t\t\t/**\r\n\t\t\t * Width of the column\r\n\t\t\t * @type string\r\n\t\t\t * @default null\r\n\t\t\t */\r\n\t\t\t\"sWidth\": null,\r\n\r\n\t\t\t/**\r\n\t\t\t * Width of the column when it was first \"encountered\"\r\n\t\t\t * @type string\r\n\t\t\t * @default null\r\n\t\t\t */\r\n\t\t\t\"sWidthOrig\": null\r\n\t\t};\r\n\r\n\r\n\r\n\t\t/**\r\n\t\t * Initialisation options that can be given to DataTables at initialisation\r\n\t\t * time.\r\n\t\t * @namespace\r\n\t\t */\r\n\t\tDataTable.defaults = {\r\n\t\t\t/**\r\n\t\t\t * An array of data to use for the table, passed in at initialisation which\r\n\t\t\t * will be used in preference to any data which is already in the DOM. This is\r\n\t\t\t * particularly useful for constructing tables purely in Javascript, for\r\n\t\t\t * example with a custom Ajax call.\r\n\t\t\t * @type array\r\n\t\t\t * @default null\r\n\t\t\t * @dtopt Option\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * // Using a 2D array data source\r\n\t\t\t * $(document).ready( function () {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"aaData\": [\r\n\t\t * ['Trident', 'Internet Explorer 4.0', 'Win 95+', 4, 'X'],\r\n\t\t * ['Trident', 'Internet Explorer 5.0', 'Win 95+', 5, 'C'],\r\n\t\t * ],\r\n\t\t * \"aoColumns\": [\r\n\t\t * { \"sTitle\": \"Engine\" },\r\n\t\t * { \"sTitle\": \"Browser\" },\r\n\t\t * { \"sTitle\": \"Platform\" },\r\n\t\t * { \"sTitle\": \"Version\" },\r\n\t\t * { \"sTitle\": \"Grade\" }\r\n\t\t * ]\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * // Using an array of objects as a data source (mData)\r\n\t\t\t * $(document).ready( function () {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"aaData\": [\r\n\t\t * {\r\n\t\t * \"engine\": \"Trident\",\r\n\t\t * \"browser\": \"Internet Explorer 4.0\",\r\n\t\t * \"platform\": \"Win 95+\",\r\n\t\t * \"version\": 4,\r\n\t\t * \"grade\": \"X\"\r\n\t\t * },\r\n\t\t * {\r\n\t\t * \"engine\": \"Trident\",\r\n\t\t * \"browser\": \"Internet Explorer 5.0\",\r\n\t\t * \"platform\": \"Win 95+\",\r\n\t\t * \"version\": 5,\r\n\t\t * \"grade\": \"C\"\r\n\t\t * }\r\n\t\t * ],\r\n\t\t * \"aoColumns\": [\r\n\t\t * { \"sTitle\": \"Engine\", \"mData\": \"engine\" },\r\n\t\t * { \"sTitle\": \"Browser\", \"mData\": \"browser\" },\r\n\t\t * { \"sTitle\": \"Platform\", \"mData\": \"platform\" },\r\n\t\t * { \"sTitle\": \"Version\", \"mData\": \"version\" },\r\n\t\t * { \"sTitle\": \"Grade\", \"mData\": \"grade\" }\r\n\t\t * ]\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"aaData\": null,\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * If sorting is enabled, then DataTables will perform a first pass sort on\r\n\t\t\t * initialisation. You can define which column(s) the sort is performed upon,\r\n\t\t\t * and the sorting direction, with this variable. The aaSorting array should\r\n\t\t\t * contain an array for each column to be sorted initially containing the\r\n\t\t\t * column's index and a direction string ('asc' or 'desc').\r\n\t\t\t * @type array\r\n\t\t\t * @default [[0,'asc']]\r\n\t\t\t * @dtopt Option\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * // Sort by 3rd column first, and then 4th column\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"aaSorting\": [[2,'asc'], [3,'desc']]\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t *\r\n\t\t\t * // No initial sorting\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"aaSorting\": []\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"aaSorting\": [[0,'asc']],\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * This parameter is basically identical to the aaSorting parameter, but\r\n\t\t\t * cannot be overridden by user interaction with the table. What this means\r\n\t\t\t * is that you could have a column (visible or hidden) which the sorting will\r\n\t\t\t * always be forced on first - any sorting after that (from the user) will\r\n\t\t\t * then be performed as required. This can be useful for grouping rows\r\n\t\t\t * together.\r\n\t\t\t * @type array\r\n\t\t\t * @default null\r\n\t\t\t * @dtopt Option\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"aaSortingFixed\": [[0,'asc']]\r\n\t\t * } );\r\n\t\t * } )\r\n\t\t\t */\r\n\t\t\t\"aaSortingFixed\": null,\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * This parameter allows you to readily specify the entries in the length drop\r\n\t\t\t * down menu that DataTables shows when pagination is enabled. It can be\r\n\t\t\t * either a 1D array of options which will be used for both the displayed\r\n\t\t\t * option and the value, or a 2D array which will use the array in the first\r\n\t\t\t * position as the value, and the array in the second position as the\r\n\t\t\t * displayed options (useful for language strings such as 'All').\r\n\t\t\t * @type array\r\n\t\t\t * @default [ 10, 25, 50, 100 ]\r\n\t\t\t * @dtopt Option\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"aLengthMenu\": [[10, 25, 50, -1], [10, 25, 50, \"All\"]]\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * // Setting the default display length as well as length menu\r\n\t\t\t * // This is likely to be wanted if you remove the '10' option which\r\n\t\t\t * // is the iDisplayLength default.\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"iDisplayLength\": 25,\r\n\t\t * \"aLengthMenu\": [[25, 50, 100, -1], [25, 50, 100, \"All\"]]\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"aLengthMenu\": [ 10, 25, 50, 100 ],\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * The aoColumns option in the initialisation parameter allows you to define\r\n\t\t\t * details about the way individual columns behave. For a full list of\r\n\t\t\t * column options that can be set, please see\r\n\t\t\t * {@link DataTable.defaults.columns}. Note that if you use aoColumns to\r\n\t\t\t * define your columns, you must have an entry in the array for every single\r\n\t\t\t * column that you have in your table (these can be null if you don't which\r\n\t\t\t * to specify any options).\r\n\t\t\t * @member\r\n\t\t\t */\r\n\t\t\t\"aoColumns\": null,\r\n\r\n\t\t\t/**\r\n\t\t\t * Very similar to aoColumns, aoColumnDefs allows you to target a specific\r\n\t\t\t * column, multiple columns, or all columns, using the aTargets property of\r\n\t\t\t * each object in the array. This allows great flexibility when creating\r\n\t\t\t * tables, as the aoColumnDefs arrays can be of any length, targeting the\r\n\t\t\t * columns you specifically want. aoColumnDefs may use any of the column\r\n\t\t\t * options available: {@link DataTable.defaults.columns}, but it _must_\r\n\t\t\t * have aTargets defined in each object in the array. Values in the aTargets\r\n\t\t\t * array may be:\r\n\t\t\t *
\r\n\t\t\t *
a string - class name will be matched on the TH for the column
\r\n\t\t\t *
0 or a positive integer - column index counting from the left
\r\n\t\t\t *
a negative integer - column index counting from the right
\r\n\t\t\t *
the string \"_all\" - all columns (i.e. assign a default)
\r\n\t\t\t *
\r\n\t\t\t * @member\r\n\t\t\t */\r\n\t\t\t\"aoColumnDefs\": null,\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Basically the same as oSearch, this parameter defines the individual column\r\n\t\t\t * filtering state at initialisation time. The array must be of the same size\r\n\t\t\t * as the number of columns, and each element be an object with the parameters\r\n\t\t\t * \"sSearch\" and \"bEscapeRegex\" (the latter is optional). 'null' is also\r\n\t\t\t * accepted and the default will be used.\r\n\t\t\t * @type array\r\n\t\t\t * @default []\r\n\t\t\t * @dtopt Option\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"aoSearchCols\": [\r\n\t\t * null,\r\n\t\t * { \"sSearch\": \"My filter\" },\r\n\t\t * null,\r\n\t\t * { \"sSearch\": \"^[0-9]\", \"bEscapeRegex\": false }\r\n\t\t * ]\r\n\t\t * } );\r\n\t\t * } )\r\n\t\t\t */\r\n\t\t\t\"aoSearchCols\": [],\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * An array of CSS classes that should be applied to displayed rows. This\r\n\t\t\t * array may be of any length, and DataTables will apply each class\r\n\t\t\t * sequentially, looping when required.\r\n\t\t\t * @type array\r\n\t\t\t * @default null Will take the values determined by the oClasses.sStripe*\r\n\t\t\t * options\r\n\t\t\t * @dtopt Option\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"asStripeClasses\": [ 'strip1', 'strip2', 'strip3' ]\r\n\t\t * } );\r\n\t\t * } )\r\n\t\t\t */\r\n\t\t\t\"asStripeClasses\": null,\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Enable or disable automatic column width calculation. This can be disabled\r\n\t\t\t * as an optimisation (it takes some time to calculate the widths) if the\r\n\t\t\t * tables widths are passed in using aoColumns.\r\n\t\t\t * @type boolean\r\n\t\t\t * @default true\r\n\t\t\t * @dtopt Features\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * $(document).ready( function () {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"bAutoWidth\": false\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"bAutoWidth\": true,\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Deferred rendering can provide DataTables with a huge speed boost when you\r\n\t\t\t * are using an Ajax or JS data source for the table. This option, when set to\r\n\t\t\t * true, will cause DataTables to defer the creation of the table elements for\r\n\t\t\t * each row until they are needed for a draw - saving a significant amount of\r\n\t\t\t * time.\r\n\t\t\t * @type boolean\r\n\t\t\t * @default false\r\n\t\t\t * @dtopt Features\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * var oTable = $('#example').dataTable( {\r\n\t\t * \"sAjaxSource\": \"sources/arrays.txt\",\r\n\t\t * \"bDeferRender\": true\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"bDeferRender\": false,\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Replace a DataTable which matches the given selector and replace it with\r\n\t\t\t * one which has the properties of the new initialisation object passed. If no\r\n\t\t\t * table matches the selector, then the new DataTable will be constructed as\r\n\t\t\t * per normal.\r\n\t\t\t * @type boolean\r\n\t\t\t * @default false\r\n\t\t\t * @dtopt Options\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"sScrollY\": \"200px\",\r\n\t\t * \"bPaginate\": false\r\n\t\t * } );\r\n\t\t * \r\n\t\t * // Some time later....\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"bFilter\": false,\r\n\t\t * \"bDestroy\": true\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"bDestroy\": false,\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Enable or disable filtering of data. Filtering in DataTables is \"smart\" in\r\n\t\t\t * that it allows the end user to input multiple words (space separated) and\r\n\t\t\t * will match a row containing those words, even if not in the order that was\r\n\t\t\t * specified (this allow matching across multiple columns). Note that if you\r\n\t\t\t * wish to use filtering in DataTables this must remain 'true' - to remove the\r\n\t\t\t * default filtering input box and retain filtering abilities, please use\r\n\t\t\t * {@link DataTable.defaults.sDom}.\r\n\t\t\t * @type boolean\r\n\t\t\t * @default true\r\n\t\t\t * @dtopt Features\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * $(document).ready( function () {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"bFilter\": false\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"bFilter\": true,\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Enable or disable the table information display. This shows information\r\n\t\t\t * about the data that is currently visible on the page, including information\r\n\t\t\t * about filtered data if that action is being performed.\r\n\t\t\t * @type boolean\r\n\t\t\t * @default true\r\n\t\t\t * @dtopt Features\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * $(document).ready( function () {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"bInfo\": false\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"bInfo\": true,\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Enable jQuery UI ThemeRoller support (required as ThemeRoller requires some\r\n\t\t\t * slightly different and additional mark-up from what DataTables has\r\n\t\t\t * traditionally used).\r\n\t\t\t * @type boolean\r\n\t\t\t * @default false\r\n\t\t\t * @dtopt Features\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"bJQueryUI\": true\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"bJQueryUI\": false,\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Allows the end user to select the size of a formatted page from a select\r\n\t\t\t * menu (sizes are 10, 25, 50 and 100). Requires pagination (bPaginate).\r\n\t\t\t * @type boolean\r\n\t\t\t * @default true\r\n\t\t\t * @dtopt Features\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * $(document).ready( function () {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"bLengthChange\": false\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"bLengthChange\": true,\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Enable or disable pagination.\r\n\t\t\t * @type boolean\r\n\t\t\t * @default true\r\n\t\t\t * @dtopt Features\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * $(document).ready( function () {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"bPaginate\": false\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"bPaginate\": true,\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Enable or disable the display of a 'processing' indicator when the table is\r\n\t\t\t * being processed (e.g. a sort). This is particularly useful for tables with\r\n\t\t\t * large amounts of data where it can take a noticeable amount of time to sort\r\n\t\t\t * the entries.\r\n\t\t\t * @type boolean\r\n\t\t\t * @default false\r\n\t\t\t * @dtopt Features\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * $(document).ready( function () {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"bProcessing\": true\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"bProcessing\": false,\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Retrieve the DataTables object for the given selector. Note that if the\r\n\t\t\t * table has already been initialised, this parameter will cause DataTables\r\n\t\t\t * to simply return the object that has already been set up - it will not take\r\n\t\t\t * account of any changes you might have made to the initialisation object\r\n\t\t\t * passed to DataTables (setting this parameter to true is an acknowledgement\r\n\t\t\t * that you understand this). bDestroy can be used to reinitialise a table if\r\n\t\t\t * you need.\r\n\t\t\t * @type boolean\r\n\t\t\t * @default false\r\n\t\t\t * @dtopt Options\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * initTable();\r\n\t\t * tableActions();\r\n\t\t * } );\r\n\t\t\t *\r\n\t\t\t * function initTable ()\r\n\t\t\t * {\r\n\t\t * return $('#example').dataTable( {\r\n\t\t * \"sScrollY\": \"200px\",\r\n\t\t * \"bPaginate\": false,\r\n\t\t * \"bRetrieve\": true\r\n\t\t * } );\r\n\t\t * }\r\n\t\t\t *\r\n\t\t\t * function tableActions ()\r\n\t\t\t * {\r\n\t\t * var oTable = initTable();\r\n\t\t * // perform API operations with oTable \r\n\t\t * }\r\n\t\t\t */\r\n\t\t\t\"bRetrieve\": false,\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Indicate if DataTables should be allowed to set the padding / margin\r\n\t\t\t * etc for the scrolling header elements or not. Typically you will want\r\n\t\t\t * this.\r\n\t\t\t * @type boolean\r\n\t\t\t * @default true\r\n\t\t\t * @dtopt Options\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"bScrollAutoCss\": false,\r\n\t\t * \"sScrollY\": \"200px\"\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"bScrollAutoCss\": true,\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * When vertical (y) scrolling is enabled, DataTables will force the height of\r\n\t\t\t * the table's viewport to the given height at all times (useful for layout).\r\n\t\t\t * However, this can look odd when filtering data down to a small data set,\r\n\t\t\t * and the footer is left \"floating\" further down. This parameter (when\r\n\t\t\t * enabled) will cause DataTables to collapse the table's viewport down when\r\n\t\t\t * the result set will fit within the given Y height.\r\n\t\t\t * @type boolean\r\n\t\t\t * @default false\r\n\t\t\t * @dtopt Options\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"sScrollY\": \"200\",\r\n\t\t * \"bScrollCollapse\": true\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"bScrollCollapse\": false,\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Enable infinite scrolling for DataTables (to be used in combination with\r\n\t\t\t * sScrollY). Infinite scrolling means that DataTables will continually load\r\n\t\t\t * data as a user scrolls through a table, which is very useful for large\r\n\t\t\t * dataset. This cannot be used with pagination, which is automatically\r\n\t\t\t * disabled. Note - the Scroller extra for DataTables is recommended in\r\n\t\t\t * in preference to this option.\r\n\t\t\t * @type boolean\r\n\t\t\t * @default false\r\n\t\t\t * @dtopt Features\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"bScrollInfinite\": true,\r\n\t\t * \"bScrollCollapse\": true,\r\n\t\t * \"sScrollY\": \"200px\"\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"bScrollInfinite\": false,\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Configure DataTables to use server-side processing. Note that the\r\n\t\t\t * sAjaxSource parameter must also be given in order to give DataTables a\r\n\t\t\t * source to obtain the required data for each draw.\r\n\t\t\t * @type boolean\r\n\t\t\t * @default false\r\n\t\t\t * @dtopt Features\r\n\t\t\t * @dtopt Server-side\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * $(document).ready( function () {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"bServerSide\": true,\r\n\t\t * \"sAjaxSource\": \"xhr.php\"\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"bServerSide\": false,\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Enable or disable sorting of columns. Sorting of individual columns can be\r\n\t\t\t * disabled by the \"bSortable\" option for each column.\r\n\t\t\t * @type boolean\r\n\t\t\t * @default true\r\n\t\t\t * @dtopt Features\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * $(document).ready( function () {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"bSort\": false\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"bSort\": true,\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Allows control over whether DataTables should use the top (true) unique\r\n\t\t\t * cell that is found for a single column, or the bottom (false - default).\r\n\t\t\t * This is useful when using complex headers.\r\n\t\t\t * @type boolean\r\n\t\t\t * @default false\r\n\t\t\t * @dtopt Options\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"bSortCellsTop\": true\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"bSortCellsTop\": false,\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Enable or disable the addition of the classes 'sorting_1', 'sorting_2' and\r\n\t\t\t * 'sorting_3' to the columns which are currently being sorted on. This is\r\n\t\t\t * presented as a feature switch as it can increase processing time (while\r\n\t\t\t * classes are removed and added) so for large data sets you might want to\r\n\t\t\t * turn this off.\r\n\t\t\t * @type boolean\r\n\t\t\t * @default true\r\n\t\t\t * @dtopt Features\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * $(document).ready( function () {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"bSortClasses\": false\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"bSortClasses\": true,\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Enable or disable state saving. When enabled a cookie will be used to save\r\n\t\t\t * table display information such as pagination information, display length,\r\n\t\t\t * filtering and sorting. As such when the end user reloads the page the\r\n\t\t\t * display display will match what thy had previously set up.\r\n\t\t\t * @type boolean\r\n\t\t\t * @default false\r\n\t\t\t * @dtopt Features\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * $(document).ready( function () {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"bStateSave\": true\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"bStateSave\": false,\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Customise the cookie and / or the parameters being stored when using\r\n\t\t\t * DataTables with state saving enabled. This function is called whenever\r\n\t\t\t * the cookie is modified, and it expects a fully formed cookie string to be\r\n\t\t\t * returned. Note that the data object passed in is a Javascript object which\r\n\t\t\t * must be converted to a string (JSON.stringify for example).\r\n\t\t\t * @type function\r\n\t\t\t * @param {string} sName Name of the cookie defined by DataTables\r\n\t\t\t * @param {object} oData Data to be stored in the cookie\r\n\t\t\t * @param {string} sExpires Cookie expires string\r\n\t\t\t * @param {string} sPath Path of the cookie to set\r\n\t\t\t * @returns {string} Cookie formatted string (which should be encoded by\r\n\t\t\t * using encodeURIComponent())\r\n\t\t\t * @dtopt Callbacks\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * $(document).ready( function () {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"fnCookieCallback\": function (sName, oData, sExpires, sPath) {\r\n\t\t * // Customise oData or sName or whatever else here\r\n\t\t * return sName + \"=\"+JSON.stringify(oData)+\"; expires=\" + sExpires +\"; path=\" + sPath;\r\n\t\t * }\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"fnCookieCallback\": null,\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * This function is called when a TR element is created (and all TD child\r\n\t\t\t * elements have been inserted), or registered if using a DOM source, allowing\r\n\t\t\t * manipulation of the TR element (adding classes etc).\r\n\t\t\t * @type function\r\n\t\t\t * @param {node} nRow \"TR\" element for the current row\r\n\t\t\t * @param {array} aData Raw data array for this row\r\n\t\t\t * @param {int} iDataIndex The index of this row in aoData\r\n\t\t\t * @dtopt Callbacks\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"fnCreatedRow\": function( nRow, aData, iDataIndex ) {\r\n\t\t * // Bold the grade for all 'A' grade browsers\r\n\t\t * if ( aData[4] == \"A\" )\r\n\t\t * {\r\n\t\t * $('td:eq(4)', nRow).html( 'A' );\r\n\t\t * }\r\n\t\t * }\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"fnCreatedRow\": null,\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * This function is called on every 'draw' event, and allows you to\r\n\t\t\t * dynamically modify any aspect you want about the created DOM.\r\n\t\t\t * @type function\r\n\t\t\t * @param {object} oSettings DataTables settings object\r\n\t\t\t * @dtopt Callbacks\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"fnDrawCallback\": function( oSettings ) {\r\n\t\t * alert( 'DataTables has redrawn the table' );\r\n\t\t * }\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"fnDrawCallback\": null,\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Identical to fnHeaderCallback() but for the table footer this function\r\n\t\t\t * allows you to modify the table footer on every 'draw' even.\r\n\t\t\t * @type function\r\n\t\t\t * @param {node} nFoot \"TR\" element for the footer\r\n\t\t\t * @param {array} aData Full table data (as derived from the original HTML)\r\n\t\t\t * @param {int} iStart Index for the current display starting point in the\r\n\t\t\t * display array\r\n\t\t\t * @param {int} iEnd Index for the current display ending point in the\r\n\t\t\t * display array\r\n\t\t\t * @param {array int} aiDisplay Index array to translate the visual position\r\n\t\t\t * to the full data array\r\n\t\t\t * @dtopt Callbacks\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"fnFooterCallback\": function( nFoot, aData, iStart, iEnd, aiDisplay ) {\r\n\t\t * nFoot.getElementsByTagName('th')[0].innerHTML = \"Starting index is \"+iStart;\r\n\t\t * }\r\n\t\t * } );\r\n\t\t * } )\r\n\t\t\t */\r\n\t\t\t\"fnFooterCallback\": null,\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * When rendering large numbers in the information element for the table\r\n\t\t\t * (i.e. \"Showing 1 to 10 of 57 entries\") DataTables will render large numbers\r\n\t\t\t * to have a comma separator for the 'thousands' units (e.g. 1 million is\r\n\t\t\t * rendered as \"1,000,000\") to help readability for the end user. This\r\n\t\t\t * function will override the default method DataTables uses.\r\n\t\t\t * @type function\r\n\t\t\t * @member\r\n\t\t\t * @param {int} iIn number to be formatted\r\n\t\t\t * @returns {string} formatted string for DataTables to show the number\r\n\t\t\t * @dtopt Callbacks\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"fnFormatNumber\": function ( iIn ) {\r\n\t\t * if ( iIn < 1000 ) {\r\n\t\t * return iIn;\r\n\t\t * } else {\r\n\t\t * var \r\n\t\t * s=(iIn+\"\"), \r\n\t\t * a=s.split(\"\"), out=\"\", \r\n\t\t * iLen=s.length;\r\n\t\t * \r\n\t\t * for ( var i=0 ; i<iLen ; i++ ) {\r\n\t\t * if ( i%3 === 0 && i !== 0 ) {\r\n\t\t * out = \"'\"+out;\r\n\t\t * }\r\n\t\t * out = a[iLen-i-1]+out;\r\n\t\t * }\r\n\t\t * }\r\n\t\t * return out;\r\n\t\t * };\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"fnFormatNumber\": function ( iIn ) {\r\n\t\t\t\tif ( iIn < 1000 )\r\n\t\t\t\t{\r\n\t\t\t\t\t// A small optimisation for what is likely to be the majority of use cases\r\n\t\t\t\t\treturn iIn;\r\n\t\t\t\t}\r\n\r\n\t\t\t\tvar s=(iIn+\"\"), a=s.split(\"\"), out=\"\", iLen=s.length;\r\n\r\n\t\t\t\tfor ( var i=0 ; iA' );\r\n\t\t * }\r\n\t\t * }\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"fnRowCallback\": null,\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * This parameter allows you to override the default function which obtains\r\n\t\t\t * the data from the server ($.getJSON) so something more suitable for your\r\n\t\t\t * application. For example you could use POST data, or pull information from\r\n\t\t\t * a Gears or AIR database.\r\n\t\t\t * @type function\r\n\t\t\t * @member\r\n\t\t\t * @param {string} sSource HTTP source to obtain the data from (sAjaxSource)\r\n\t\t\t * @param {array} aoData A key/value pair object containing the data to send\r\n\t\t\t * to the server\r\n\t\t\t * @param {function} fnCallback to be called on completion of the data get\r\n\t\t\t * process that will draw the data on the page.\r\n\t\t\t * @param {object} oSettings DataTables settings object\r\n\t\t\t * @dtopt Callbacks\r\n\t\t\t * @dtopt Server-side\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * // POST data to server\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"bProcessing\": true,\r\n\t\t * \"bServerSide\": true,\r\n\t\t * \"sAjaxSource\": \"xhr.php\",\r\n\t\t * \"fnServerData\": function ( sSource, aoData, fnCallback, oSettings ) {\r\n\t\t * oSettings.jqXHR = $.ajax( {\r\n\t\t * \"dataType\": 'json', \r\n\t\t * \"type\": \"POST\", \r\n\t\t * \"url\": sSource, \r\n\t\t * \"data\": aoData, \r\n\t\t * \"success\": fnCallback\r\n\t\t * } );\r\n\t\t * }\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"fnServerData\": function ( sUrl, aoData, fnCallback, oSettings ) {\r\n\t\t\t\toSettings.jqXHR = $.ajax( {\r\n\t\t\t\t\t\"url\": sUrl,\r\n\t\t\t\t\t\"data\": aoData,\r\n\t\t\t\t\t\"success\": function (json) {\r\n\t\t\t\t\t\tif ( json.sError ) {\r\n\t\t\t\t\t\t\toSettings.oApi._fnLog( oSettings, 0, json.sError );\r\n\t\t\t\t\t\t}\r\n\r\n\t\t\t\t\t\t$(oSettings.oInstance).trigger('xhr', [oSettings, json]);\r\n\t\t\t\t\t\tfnCallback( json );\r\n\t\t\t\t\t},\r\n\t\t\t\t\t\"dataType\": \"json\",\r\n\t\t\t\t\t\"cache\": false,\r\n\t\t\t\t\t\"type\": oSettings.sServerMethod,\r\n\t\t\t\t\t\"error\": function (xhr, error, thrown) {\r\n\t\t\t\t\t\tif ( error == \"parsererror\" ) {\r\n\t\t\t\t\t\t\toSettings.oApi._fnLog( oSettings, 0, \"DataTables warning: JSON data from \"+\r\n\t\t\t\t\t\t\t\t\"server could not be parsed. This is caused by a JSON formatting error.\" );\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\t} );\r\n\t\t\t},\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * It is often useful to send extra data to the server when making an Ajax\r\n\t\t\t * request - for example custom filtering information, and this callback\r\n\t\t\t * function makes it trivial to send extra information to the server. The\r\n\t\t\t * passed in parameter is the data set that has been constructed by\r\n\t\t\t * DataTables, and you can add to this or modify it as you require.\r\n\t\t\t * @type function\r\n\t\t\t * @param {array} aoData Data array (array of objects which are name/value\r\n\t\t\t * pairs) that has been constructed by DataTables and will be sent to the\r\n\t\t\t * server. In the case of Ajax sourced data with server-side processing\r\n\t\t\t * this will be an empty array, for server-side processing there will be a\r\n\t\t\t * significant number of parameters!\r\n\t\t\t * @returns {undefined} Ensure that you modify the aoData array passed in,\r\n\t\t\t * as this is passed by reference.\r\n\t\t\t * @dtopt Callbacks\r\n\t\t\t * @dtopt Server-side\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"bProcessing\": true,\r\n\t\t * \"bServerSide\": true,\r\n\t\t * \"sAjaxSource\": \"scripts/server_processing.php\",\r\n\t\t * \"fnServerParams\": function ( aoData ) {\r\n\t\t * aoData.push( { \"name\": \"more_data\", \"value\": \"my_value\" } );\r\n\t\t * }\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"fnServerParams\": null,\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Load the table state. With this function you can define from where, and how, the\r\n\t\t\t * state of a table is loaded. By default DataTables will load from its state saving\r\n\t\t\t * cookie, but you might wish to use local storage (HTML5) or a server-side database.\r\n\t\t\t * @type function\r\n\t\t\t * @member\r\n\t\t\t * @param {object} oSettings DataTables settings object\r\n\t\t\t * @return {object} The DataTables state object to be loaded\r\n\t\t\t * @dtopt Callbacks\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"bStateSave\": true,\r\n\t\t * \"fnStateLoad\": function (oSettings) {\r\n\t\t * var o;\r\n\t\t * \r\n\t\t * // Send an Ajax request to the server to get the data. Note that\r\n\t\t * // this is a synchronous request.\r\n\t\t * $.ajax( {\r\n\t\t * \"url\": \"/state_load\",\r\n\t\t * \"async\": false,\r\n\t\t * \"dataType\": \"json\",\r\n\t\t * \"success\": function (json) {\r\n\t\t * o = json;\r\n\t\t * }\r\n\t\t * } );\r\n\t\t * \r\n\t\t * return o;\r\n\t\t * }\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"fnStateLoad\": function ( oSettings ) {\r\n\t\t\t\tvar sData = this.oApi._fnReadCookie( oSettings.sCookiePrefix+oSettings.sInstance );\r\n\t\t\t\tvar oData;\r\n\r\n\t\t\t\ttry {\r\n\t\t\t\t\toData = (typeof $.parseJSON === 'function') ?\r\n\t\t\t\t\t\t$.parseJSON(sData) : eval( '('+sData+')' );\r\n\t\t\t\t} catch (e) {\r\n\t\t\t\t\toData = null;\r\n\t\t\t\t}\r\n\r\n\t\t\t\treturn oData;\r\n\t\t\t},\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Callback which allows modification of the saved state prior to loading that state.\r\n\t\t\t * This callback is called when the table is loading state from the stored data, but\r\n\t\t\t * prior to the settings object being modified by the saved state. Note that for\r\n\t\t\t * plug-in authors, you should use the 'stateLoadParams' event to load parameters for\r\n\t\t\t * a plug-in.\r\n\t\t\t * @type function\r\n\t\t\t * @param {object} oSettings DataTables settings object\r\n\t\t\t * @param {object} oData The state object that is to be loaded\r\n\t\t\t * @dtopt Callbacks\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * // Remove a saved filter, so filtering is never loaded\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"bStateSave\": true,\r\n\t\t * \"fnStateLoadParams\": function (oSettings, oData) {\r\n\t\t * oData.oSearch.sSearch = \"\";\r\n\t\t * }\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * // Disallow state loading by returning false\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"bStateSave\": true,\r\n\t\t * \"fnStateLoadParams\": function (oSettings, oData) {\r\n\t\t * return false;\r\n\t\t * }\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"fnStateLoadParams\": null,\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Callback that is called when the state has been loaded from the state saving method\r\n\t\t\t * and the DataTables settings object has been modified as a result of the loaded state.\r\n\t\t\t * @type function\r\n\t\t\t * @param {object} oSettings DataTables settings object\r\n\t\t\t * @param {object} oData The state object that was loaded\r\n\t\t\t * @dtopt Callbacks\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * // Show an alert with the filtering value that was saved\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"bStateSave\": true,\r\n\t\t * \"fnStateLoaded\": function (oSettings, oData) {\r\n\t\t * alert( 'Saved filter was: '+oData.oSearch.sSearch );\r\n\t\t * }\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"fnStateLoaded\": null,\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Save the table state. This function allows you to define where and how the state\r\n\t\t\t * information for the table is stored - by default it will use a cookie, but you\r\n\t\t\t * might want to use local storage (HTML5) or a server-side database.\r\n\t\t\t * @type function\r\n\t\t\t * @member\r\n\t\t\t * @param {object} oSettings DataTables settings object\r\n\t\t\t * @param {object} oData The state object to be saved\r\n\t\t\t * @dtopt Callbacks\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"bStateSave\": true,\r\n\t\t * \"fnStateSave\": function (oSettings, oData) {\r\n\t\t * // Send an Ajax request to the server with the state object\r\n\t\t * $.ajax( {\r\n\t\t * \"url\": \"/state_save\",\r\n\t\t * \"data\": oData,\r\n\t\t * \"dataType\": \"json\",\r\n\t\t * \"method\": \"POST\"\r\n\t\t * \"success\": function () {}\r\n\t\t * } );\r\n\t\t * }\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"fnStateSave\": function ( oSettings, oData ) {\r\n\t\t\t\tthis.oApi._fnCreateCookie(\r\n\t\t\t\t\toSettings.sCookiePrefix+oSettings.sInstance,\r\n\t\t\t\t\tthis.oApi._fnJsonString(oData),\r\n\t\t\t\t\toSettings.iCookieDuration,\r\n\t\t\t\t\toSettings.sCookiePrefix,\r\n\t\t\t\t\toSettings.fnCookieCallback\r\n\t\t\t\t);\r\n\t\t\t},\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Callback which allows modification of the state to be saved. Called when the table\r\n\t\t\t * has changed state a new state save is required. This method allows modification of\r\n\t\t\t * the state saving object prior to actually doing the save, including addition or\r\n\t\t\t * other state properties or modification. Note that for plug-in authors, you should\r\n\t\t\t * use the 'stateSaveParams' event to save parameters for a plug-in.\r\n\t\t\t * @type function\r\n\t\t\t * @param {object} oSettings DataTables settings object\r\n\t\t\t * @param {object} oData The state object to be saved\r\n\t\t\t * @dtopt Callbacks\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * // Remove a saved filter, so filtering is never saved\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"bStateSave\": true,\r\n\t\t * \"fnStateSaveParams\": function (oSettings, oData) {\r\n\t\t * oData.oSearch.sSearch = \"\";\r\n\t\t * }\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"fnStateSaveParams\": null,\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Duration of the cookie which is used for storing session information. This\r\n\t\t\t * value is given in seconds.\r\n\t\t\t * @type int\r\n\t\t\t * @default 7200 (2 hours)\r\n\t\t\t * @dtopt Options\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"iCookieDuration\": 60*60*24; // 1 day\r\n\t\t * } );\r\n\t\t * } )\r\n\t\t\t */\r\n\t\t\t\"iCookieDuration\": 7200,\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * When enabled DataTables will not make a request to the server for the first\r\n\t\t\t * page draw - rather it will use the data already on the page (no sorting etc\r\n\t\t\t * will be applied to it), thus saving on an XHR at load time. iDeferLoading\r\n\t\t\t * is used to indicate that deferred loading is required, but it is also used\r\n\t\t\t * to tell DataTables how many records there are in the full table (allowing\r\n\t\t\t * the information element and pagination to be displayed correctly). In the case\r\n\t\t\t * where a filtering is applied to the table on initial load, this can be\r\n\t\t\t * indicated by giving the parameter as an array, where the first element is\r\n\t\t\t * the number of records available after filtering and the second element is the\r\n\t\t\t * number of records without filtering (allowing the table information element\r\n\t\t\t * to be shown correctly).\r\n\t\t\t * @type int | array\r\n\t\t\t * @default null\r\n\t\t\t * @dtopt Options\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * // 57 records available in the table, no filtering applied\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"bServerSide\": true,\r\n\t\t * \"sAjaxSource\": \"scripts/server_processing.php\",\r\n\t\t * \"iDeferLoading\": 57\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * // 57 records after filtering, 100 without filtering (an initial filter applied)\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"bServerSide\": true,\r\n\t\t * \"sAjaxSource\": \"scripts/server_processing.php\",\r\n\t\t * \"iDeferLoading\": [ 57, 100 ],\r\n\t\t * \"oSearch\": {\r\n\t\t * \"sSearch\": \"my_filter\"\r\n\t\t * }\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"iDeferLoading\": null,\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Number of rows to display on a single page when using pagination. If\r\n\t\t\t * feature enabled (bLengthChange) then the end user will be able to override\r\n\t\t\t * this to a custom setting using a pop-up menu.\r\n\t\t\t * @type int\r\n\t\t\t * @default 10\r\n\t\t\t * @dtopt Options\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"iDisplayLength\": 50\r\n\t\t * } );\r\n\t\t * } )\r\n\t\t\t */\r\n\t\t\t\"iDisplayLength\": 10,\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Define the starting point for data display when using DataTables with\r\n\t\t\t * pagination. Note that this parameter is the number of records, rather than\r\n\t\t\t * the page number, so if you have 10 records per page and want to start on\r\n\t\t\t * the third page, it should be \"20\".\r\n\t\t\t * @type int\r\n\t\t\t * @default 0\r\n\t\t\t * @dtopt Options\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"iDisplayStart\": 20\r\n\t\t * } );\r\n\t\t * } )\r\n\t\t\t */\r\n\t\t\t\"iDisplayStart\": 0,\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * The scroll gap is the amount of scrolling that is left to go before\r\n\t\t\t * DataTables will load the next 'page' of data automatically. You typically\r\n\t\t\t * want a gap which is big enough that the scrolling will be smooth for the\r\n\t\t\t * user, while not so large that it will load more data than need.\r\n\t\t\t * @type int\r\n\t\t\t * @default 100\r\n\t\t\t * @dtopt Options\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"bScrollInfinite\": true,\r\n\t\t * \"bScrollCollapse\": true,\r\n\t\t * \"sScrollY\": \"200px\",\r\n\t\t * \"iScrollLoadGap\": 50\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"iScrollLoadGap\": 100,\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * By default DataTables allows keyboard navigation of the table (sorting, paging,\r\n\t\t\t * and filtering) by adding a tabindex attribute to the required elements. This\r\n\t\t\t * allows you to tab through the controls and press the enter key to activate them.\r\n\t\t\t * The tabindex is default 0, meaning that the tab follows the flow of the document.\r\n\t\t\t * You can overrule this using this parameter if you wish. Use a value of -1 to\r\n\t\t\t * disable built-in keyboard navigation.\r\n\t\t\t * @type int\r\n\t\t\t * @default 0\r\n\t\t\t * @dtopt Options\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"iTabIndex\": 1\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"iTabIndex\": 0,\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * All strings that DataTables uses in the user interface that it creates\r\n\t\t\t * are defined in this object, allowing you to modified them individually or\r\n\t\t\t * completely replace them all as required.\r\n\t\t\t * @namespace\r\n\t\t\t */\r\n\t\t\t\"oLanguage\": {\r\n\t\t\t\t/**\r\n\t\t\t\t * Strings that are used for WAI-ARIA labels and controls only (these are not\r\n\t\t\t\t * actually visible on the page, but will be read by screenreaders, and thus\r\n\t\t\t\t * must be internationalised as well).\r\n\t\t\t\t * @namespace\r\n\t\t\t\t */\r\n\t\t\t\t\"oAria\": {\r\n\t\t\t\t\t/**\r\n\t\t\t\t\t * ARIA label that is added to the table headers when the column may be\r\n\t\t\t\t\t * sorted ascending by activing the column (click or return when focused).\r\n\t\t\t\t\t * Note that the column header is prefixed to this string.\r\n\t\t\t\t\t * @type string\r\n\t\t\t\t\t * @default : activate to sort column ascending\r\n\t\t\t\t\t * @dtopt Language\r\n\t\t\t\t\t *\r\n\t\t\t\t\t * @example\r\n\t\t\t\t\t * $(document).ready( function() {\r\n\t\t\t\t * $('#example').dataTable( {\r\n\t\t\t\t * \"oLanguage\": {\r\n\t\t\t\t * \"oAria\": {\r\n\t\t\t\t * \"sSortAscending\": \" - click/return to sort ascending\"\r\n\t\t\t\t * }\r\n\t\t\t\t * }\r\n\t\t\t\t * } );\r\n\t\t\t\t * } );\r\n\t\t\t\t\t */\r\n\t\t\t\t\t\"sSortAscending\": \": activate to sort column ascending\",\r\n\r\n\t\t\t\t\t/**\r\n\t\t\t\t\t * ARIA label that is added to the table headers when the column may be\r\n\t\t\t\t\t * sorted descending by activing the column (click or return when focused).\r\n\t\t\t\t\t * Note that the column header is prefixed to this string.\r\n\t\t\t\t\t * @type string\r\n\t\t\t\t\t * @default : activate to sort column ascending\r\n\t\t\t\t\t * @dtopt Language\r\n\t\t\t\t\t *\r\n\t\t\t\t\t * @example\r\n\t\t\t\t\t * $(document).ready( function() {\r\n\t\t\t\t * $('#example').dataTable( {\r\n\t\t\t\t * \"oLanguage\": {\r\n\t\t\t\t * \"oAria\": {\r\n\t\t\t\t * \"sSortDescending\": \" - click/return to sort descending\"\r\n\t\t\t\t * }\r\n\t\t\t\t * }\r\n\t\t\t\t * } );\r\n\t\t\t\t * } );\r\n\t\t\t\t\t */\r\n\t\t\t\t\t\"sSortDescending\": \": activate to sort column descending\"\r\n\t\t\t\t},\r\n\r\n\t\t\t\t/**\r\n\t\t\t\t * Pagination string used by DataTables for the two built-in pagination\r\n\t\t\t\t * control types (\"two_button\" and \"full_numbers\")\r\n\t\t\t\t * @namespace\r\n\t\t\t\t */\r\n\t\t\t\t\"oPaginate\": {\r\n\t\t\t\t\t/**\r\n\t\t\t\t\t * Text to use when using the 'full_numbers' type of pagination for the\r\n\t\t\t\t\t * button to take the user to the first page.\r\n\t\t\t\t\t * @type string\r\n\t\t\t\t\t * @default First\r\n\t\t\t\t\t * @dtopt Language\r\n\t\t\t\t\t *\r\n\t\t\t\t\t * @example\r\n\t\t\t\t\t * $(document).ready( function() {\r\n\t\t\t\t * $('#example').dataTable( {\r\n\t\t\t\t * \"oLanguage\": {\r\n\t\t\t\t * \"oPaginate\": {\r\n\t\t\t\t * \"sFirst\": \"First page\"\r\n\t\t\t\t * }\r\n\t\t\t\t * }\r\n\t\t\t\t * } );\r\n\t\t\t\t * } );\r\n\t\t\t\t\t */\r\n\t\t\t\t\t\"sFirst\": \"First\",\r\n\r\n\r\n\t\t\t\t\t/**\r\n\t\t\t\t\t * Text to use when using the 'full_numbers' type of pagination for the\r\n\t\t\t\t\t * button to take the user to the last page.\r\n\t\t\t\t\t * @type string\r\n\t\t\t\t\t * @default Last\r\n\t\t\t\t\t * @dtopt Language\r\n\t\t\t\t\t *\r\n\t\t\t\t\t * @example\r\n\t\t\t\t\t * $(document).ready( function() {\r\n\t\t\t\t * $('#example').dataTable( {\r\n\t\t\t\t * \"oLanguage\": {\r\n\t\t\t\t * \"oPaginate\": {\r\n\t\t\t\t * \"sLast\": \"Last page\"\r\n\t\t\t\t * }\r\n\t\t\t\t * }\r\n\t\t\t\t * } );\r\n\t\t\t\t * } );\r\n\t\t\t\t\t */\r\n\t\t\t\t\t\"sLast\": \"Last\",\r\n\r\n\r\n\t\t\t\t\t/**\r\n\t\t\t\t\t * Text to use for the 'next' pagination button (to take the user to the\r\n\t\t\t\t\t * next page).\r\n\t\t\t\t\t * @type string\r\n\t\t\t\t\t * @default Next\r\n\t\t\t\t\t * @dtopt Language\r\n\t\t\t\t\t *\r\n\t\t\t\t\t * @example\r\n\t\t\t\t\t * $(document).ready( function() {\r\n\t\t\t\t * $('#example').dataTable( {\r\n\t\t\t\t * \"oLanguage\": {\r\n\t\t\t\t * \"oPaginate\": {\r\n\t\t\t\t * \"sNext\": \"Next page\"\r\n\t\t\t\t * }\r\n\t\t\t\t * }\r\n\t\t\t\t * } );\r\n\t\t\t\t * } );\r\n\t\t\t\t\t */\r\n\t\t\t\t\t\"sNext\": \"Next\",\r\n\r\n\r\n\t\t\t\t\t/**\r\n\t\t\t\t\t * Text to use for the 'previous' pagination button (to take the user to\r\n\t\t\t\t\t * the previous page).\r\n\t\t\t\t\t * @type string\r\n\t\t\t\t\t * @default Previous\r\n\t\t\t\t\t * @dtopt Language\r\n\t\t\t\t\t *\r\n\t\t\t\t\t * @example\r\n\t\t\t\t\t * $(document).ready( function() {\r\n\t\t\t\t * $('#example').dataTable( {\r\n\t\t\t\t * \"oLanguage\": {\r\n\t\t\t\t * \"oPaginate\": {\r\n\t\t\t\t * \"sPrevious\": \"Previous page\"\r\n\t\t\t\t * }\r\n\t\t\t\t * }\r\n\t\t\t\t * } );\r\n\t\t\t\t * } );\r\n\t\t\t\t\t */\r\n\t\t\t\t\t\"sPrevious\": \"Previous\"\r\n\t\t\t\t},\r\n\r\n\t\t\t\t/**\r\n\t\t\t\t * This string is shown in preference to sZeroRecords when the table is\r\n\t\t\t\t * empty of data (regardless of filtering). Note that this is an optional\r\n\t\t\t\t * parameter - if it is not given, the value of sZeroRecords will be used\r\n\t\t\t\t * instead (either the default or given value).\r\n\t\t\t\t * @type string\r\n\t\t\t\t * @default No data available in table\r\n\t\t\t\t * @dtopt Language\r\n\t\t\t\t *\r\n\t\t\t\t * @example\r\n\t\t\t\t * $(document).ready( function() {\r\n\t\t\t * $('#example').dataTable( {\r\n\t\t\t * \"oLanguage\": {\r\n\t\t\t * \"sEmptyTable\": \"No data available in table\"\r\n\t\t\t * }\r\n\t\t\t * } );\r\n\t\t\t * } );\r\n\t\t\t\t */\r\n\t\t\t\t\"sEmptyTable\": \"No data available in table\",\r\n\r\n\r\n\t\t\t\t/**\r\n\t\t\t\t * This string gives information to the end user about the information that\r\n\t\t\t\t * is current on display on the page. The _START_, _END_ and _TOTAL_\r\n\t\t\t\t * variables are all dynamically replaced as the table display updates, and\r\n\t\t\t\t * can be freely moved or removed as the language requirements change.\r\n\t\t\t\t * @type string\r\n\t\t\t\t * @default Showing _START_ to _END_ of _TOTAL_ entries\r\n\t\t\t\t * @dtopt Language\r\n\t\t\t\t *\r\n\t\t\t\t * @example\r\n\t\t\t\t * $(document).ready( function() {\r\n\t\t\t * $('#example').dataTable( {\r\n\t\t\t * \"oLanguage\": {\r\n\t\t\t * \"sInfo\": \"Got a total of _TOTAL_ entries to show (_START_ to _END_)\"\r\n\t\t\t * }\r\n\t\t\t * } );\r\n\t\t\t * } );\r\n\t\t\t\t */\r\n\t\t\t\t\"sInfo\": \"Showing _START_ to _END_ of _TOTAL_ entries\",\r\n\r\n\r\n\t\t\t\t/**\r\n\t\t\t\t * Display information string for when the table is empty. Typically the\r\n\t\t\t\t * format of this string should match sInfo.\r\n\t\t\t\t * @type string\r\n\t\t\t\t * @default Showing 0 to 0 of 0 entries\r\n\t\t\t\t * @dtopt Language\r\n\t\t\t\t *\r\n\t\t\t\t * @example\r\n\t\t\t\t * $(document).ready( function() {\r\n\t\t\t * $('#example').dataTable( {\r\n\t\t\t * \"oLanguage\": {\r\n\t\t\t * \"sInfoEmpty\": \"No entries to show\"\r\n\t\t\t * }\r\n\t\t\t * } );\r\n\t\t\t * } );\r\n\t\t\t\t */\r\n\t\t\t\t\"sInfoEmpty\": \"Showing 0 to 0 of 0 entries\",\r\n\r\n\r\n\t\t\t\t/**\r\n\t\t\t\t * When a user filters the information in a table, this string is appended\r\n\t\t\t\t * to the information (sInfo) to give an idea of how strong the filtering\r\n\t\t\t\t * is. The variable _MAX_ is dynamically updated.\r\n\t\t\t\t * @type string\r\n\t\t\t\t * @default (filtered from _MAX_ total entries)\r\n\t\t\t\t * @dtopt Language\r\n\t\t\t\t *\r\n\t\t\t\t * @example\r\n\t\t\t\t * $(document).ready( function() {\r\n\t\t\t * $('#example').dataTable( {\r\n\t\t\t * \"oLanguage\": {\r\n\t\t\t * \"sInfoFiltered\": \" - filtering from _MAX_ records\"\r\n\t\t\t * }\r\n\t\t\t * } );\r\n\t\t\t * } );\r\n\t\t\t\t */\r\n\t\t\t\t\"sInfoFiltered\": \"(filtered from _MAX_ total entries)\",\r\n\r\n\r\n\t\t\t\t/**\r\n\t\t\t\t * If can be useful to append extra information to the info string at times,\r\n\t\t\t\t * and this variable does exactly that. This information will be appended to\r\n\t\t\t\t * the sInfo (sInfoEmpty and sInfoFiltered in whatever combination they are\r\n\t\t\t\t * being used) at all times.\r\n\t\t\t\t * @type string\r\n\t\t\t\t * @default Empty string\r\n\t\t\t\t * @dtopt Language\r\n\t\t\t\t *\r\n\t\t\t\t * @example\r\n\t\t\t\t * $(document).ready( function() {\r\n\t\t\t * $('#example').dataTable( {\r\n\t\t\t * \"oLanguage\": {\r\n\t\t\t * \"sInfoPostFix\": \"All records shown are derived from real information.\"\r\n\t\t\t * }\r\n\t\t\t * } );\r\n\t\t\t * } );\r\n\t\t\t\t */\r\n\t\t\t\t\"sInfoPostFix\": \"\",\r\n\r\n\r\n\t\t\t\t/**\r\n\t\t\t\t * DataTables has a build in number formatter (fnFormatNumber) which is used\r\n\t\t\t\t * to format large numbers that are used in the table information. By\r\n\t\t\t\t * default a comma is used, but this can be trivially changed to any\r\n\t\t\t\t * character you wish with this parameter.\r\n\t\t\t\t * @type string\r\n\t\t\t\t * @default ,\r\n\t\t\t\t * @dtopt Language\r\n\t\t\t\t *\r\n\t\t\t\t * @example\r\n\t\t\t\t * $(document).ready( function() {\r\n\t\t\t * $('#example').dataTable( {\r\n\t\t\t * \"oLanguage\": {\r\n\t\t\t * \"sInfoThousands\": \"'\"\r\n\t\t\t * }\r\n\t\t\t * } );\r\n\t\t\t * } );\r\n\t\t\t\t */\r\n\t\t\t\t\"sInfoThousands\": \",\",\r\n\r\n\r\n\t\t\t\t/**\r\n\t\t\t\t * Detail the action that will be taken when the drop down menu for the\r\n\t\t\t\t * pagination length option is changed. The '_MENU_' variable is replaced\r\n\t\t\t\t * with a default select list of 10, 25, 50 and 100, and can be replaced\r\n\t\t\t\t * with a custom select box if required.\r\n\t\t\t\t * @type string\r\n\t\t\t\t * @default Show _MENU_ entries\r\n\t\t\t\t * @dtopt Language\r\n\t\t\t\t *\r\n\t\t\t\t * @example\r\n\t\t\t\t * // Language change only\r\n\t\t\t\t * $(document).ready( function() {\r\n\t\t\t * $('#example').dataTable( {\r\n\t\t\t * \"oLanguage\": {\r\n\t\t\t * \"sLengthMenu\": \"Display _MENU_ records\"\r\n\t\t\t * }\r\n\t\t\t * } );\r\n\t\t\t * } );\r\n\t\t\t\t *\r\n\t\t\t\t * @example\r\n\t\t\t\t * // Language and options change\r\n\t\t\t\t * $(document).ready( function() {\r\n\t\t\t * $('#example').dataTable( {\r\n\t\t\t * \"oLanguage\": {\r\n\t\t\t * \"sLengthMenu\": 'Display records'\r\n\t\t\t * }\r\n\t\t\t * } );\r\n\t\t\t * } );\r\n\t\t\t\t */\r\n\t\t\t\t\"sLengthMenu\": \"Show _MENU_ entries\",\r\n\r\n\r\n\t\t\t\t/**\r\n\t\t\t\t * When using Ajax sourced data and during the first draw when DataTables is\r\n\t\t\t\t * gathering the data, this message is shown in an empty row in the table to\r\n\t\t\t\t * indicate to the end user the the data is being loaded. Note that this\r\n\t\t\t\t * parameter is not used when loading data by server-side processing, just\r\n\t\t\t\t * Ajax sourced data with client-side processing.\r\n\t\t\t\t * @type string\r\n\t\t\t\t * @default Loading...\r\n\t\t\t\t * @dtopt Language\r\n\t\t\t\t *\r\n\t\t\t\t * @example\r\n\t\t\t\t * $(document).ready( function() {\r\n\t\t\t * $('#example').dataTable( {\r\n\t\t\t * \"oLanguage\": {\r\n\t\t\t * \"sLoadingRecords\": \"Please wait - loading...\"\r\n\t\t\t * }\r\n\t\t\t * } );\r\n\t\t\t * } );\r\n\t\t\t\t */\r\n\t\t\t\t\"sLoadingRecords\": \"Loading...\",\r\n\r\n\r\n\t\t\t\t/**\r\n\t\t\t\t * Text which is displayed when the table is processing a user action\r\n\t\t\t\t * (usually a sort command or similar).\r\n\t\t\t\t * @type string\r\n\t\t\t\t * @default Processing...\r\n\t\t\t\t * @dtopt Language\r\n\t\t\t\t *\r\n\t\t\t\t * @example\r\n\t\t\t\t * $(document).ready( function() {\r\n\t\t\t * $('#example').dataTable( {\r\n\t\t\t * \"oLanguage\": {\r\n\t\t\t * \"sProcessing\": \"DataTables is currently busy\"\r\n\t\t\t * }\r\n\t\t\t * } );\r\n\t\t\t * } );\r\n\t\t\t\t */\r\n\t\t\t\t\"sProcessing\": \"Processing...\",\r\n\r\n\r\n\t\t\t\t/**\r\n\t\t\t\t * Details the actions that will be taken when the user types into the\r\n\t\t\t\t * filtering input text box. The variable \"_INPUT_\", if used in the string,\r\n\t\t\t\t * is replaced with the HTML text box for the filtering input allowing\r\n\t\t\t\t * control over where it appears in the string. If \"_INPUT_\" is not given\r\n\t\t\t\t * then the input box is appended to the string automatically.\r\n\t\t\t\t * @type string\r\n\t\t\t\t * @default Search:\r\n\t\t\t\t * @dtopt Language\r\n\t\t\t\t *\r\n\t\t\t\t * @example\r\n\t\t\t\t * // Input text box will be appended at the end automatically\r\n\t\t\t\t * $(document).ready( function() {\r\n\t\t\t * $('#example').dataTable( {\r\n\t\t\t * \"oLanguage\": {\r\n\t\t\t * \"sSearch\": \"Filter records:\"\r\n\t\t\t * }\r\n\t\t\t * } );\r\n\t\t\t * } );\r\n\t\t\t\t *\r\n\t\t\t\t * @example\r\n\t\t\t\t * // Specify where the filter should appear\r\n\t\t\t\t * $(document).ready( function() {\r\n\t\t\t * $('#example').dataTable( {\r\n\t\t\t * \"oLanguage\": {\r\n\t\t\t * \"sSearch\": \"Apply filter _INPUT_ to table\"\r\n\t\t\t * }\r\n\t\t\t * } );\r\n\t\t\t * } );\r\n\t\t\t\t */\r\n\t\t\t\t\"sSearch\": \"Search:\",\r\n\r\n\r\n\t\t\t\t/**\r\n\t\t\t\t * All of the language information can be stored in a file on the\r\n\t\t\t\t * server-side, which DataTables will look up if this parameter is passed.\r\n\t\t\t\t * It must store the URL of the language file, which is in a JSON format,\r\n\t\t\t\t * and the object has the same properties as the oLanguage object in the\r\n\t\t\t\t * initialiser object (i.e. the above parameters). Please refer to one of\r\n\t\t\t\t * the example language files to see how this works in action.\r\n\t\t\t\t * @type string\r\n\t\t\t\t * @default Empty string - i.e. disabled\r\n\t\t\t\t * @dtopt Language\r\n\t\t\t\t *\r\n\t\t\t\t * @example\r\n\t\t\t\t * $(document).ready( function() {\r\n\t\t\t * $('#example').dataTable( {\r\n\t\t\t * \"oLanguage\": {\r\n\t\t\t * \"sUrl\": \"http://www.sprymedia.co.uk/dataTables/lang.txt\"\r\n\t\t\t * }\r\n\t\t\t * } );\r\n\t\t\t * } );\r\n\t\t\t\t */\r\n\t\t\t\t\"sUrl\": \"\",\r\n\r\n\r\n\t\t\t\t/**\r\n\t\t\t\t * Text shown inside the table records when the is no information to be\r\n\t\t\t\t * displayed after filtering. sEmptyTable is shown when there is simply no\r\n\t\t\t\t * information in the table at all (regardless of filtering).\r\n\t\t\t\t * @type string\r\n\t\t\t\t * @default No matching records found\r\n\t\t\t\t * @dtopt Language\r\n\t\t\t\t *\r\n\t\t\t\t * @example\r\n\t\t\t\t * $(document).ready( function() {\r\n\t\t\t * $('#example').dataTable( {\r\n\t\t\t * \"oLanguage\": {\r\n\t\t\t * \"sZeroRecords\": \"No records to display\"\r\n\t\t\t * }\r\n\t\t\t * } );\r\n\t\t\t * } );\r\n\t\t\t\t */\r\n\t\t\t\t\"sZeroRecords\": \"No matching records found\"\r\n\t\t\t},\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * This parameter allows you to have define the global filtering state at\r\n\t\t\t * initialisation time. As an object the \"sSearch\" parameter must be\r\n\t\t\t * defined, but all other parameters are optional. When \"bRegex\" is true,\r\n\t\t\t * the search string will be treated as a regular expression, when false\r\n\t\t\t * (default) it will be treated as a straight string. When \"bSmart\"\r\n\t\t\t * DataTables will use it's smart filtering methods (to word match at\r\n\t\t\t * any point in the data), when false this will not be done.\r\n\t\t\t * @namespace\r\n\t\t\t * @extends DataTable.models.oSearch\r\n\t\t\t * @dtopt Options\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"oSearch\": {\"sSearch\": \"Initial search\"}\r\n\t\t * } );\r\n\t\t * } )\r\n\t\t\t */\r\n\t\t\t\"oSearch\": $.extend( {}, DataTable.models.oSearch ),\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * By default DataTables will look for the property 'aaData' when obtaining\r\n\t\t\t * data from an Ajax source or for server-side processing - this parameter\r\n\t\t\t * allows that property to be changed. You can use Javascript dotted object\r\n\t\t\t * notation to get a data source for multiple levels of nesting.\r\n\t\t\t * @type string\r\n\t\t\t * @default aaData\r\n\t\t\t * @dtopt Options\r\n\t\t\t * @dtopt Server-side\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * // Get data from { \"data\": [...] }\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * var oTable = $('#example').dataTable( {\r\n\t\t * \"sAjaxSource\": \"sources/data.txt\",\r\n\t\t * \"sAjaxDataProp\": \"data\"\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * // Get data from { \"data\": { \"inner\": [...] } }\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * var oTable = $('#example').dataTable( {\r\n\t\t * \"sAjaxSource\": \"sources/data.txt\",\r\n\t\t * \"sAjaxDataProp\": \"data.inner\"\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"sAjaxDataProp\": \"aaData\",\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * You can instruct DataTables to load data from an external source using this\r\n\t\t\t * parameter (use aData if you want to pass data in you already have). Simply\r\n\t\t\t * provide a url a JSON object can be obtained from. This object must include\r\n\t\t\t * the parameter 'aaData' which is the data source for the table.\r\n\t\t\t * @type string\r\n\t\t\t * @default null\r\n\t\t\t * @dtopt Options\r\n\t\t\t * @dtopt Server-side\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"sAjaxSource\": \"http://www.sprymedia.co.uk/dataTables/json.php\"\r\n\t\t * } );\r\n\t\t * } )\r\n\t\t\t */\r\n\t\t\t\"sAjaxSource\": null,\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * This parameter can be used to override the default prefix that DataTables\r\n\t\t\t * assigns to a cookie when state saving is enabled.\r\n\t\t\t * @type string\r\n\t\t\t * @default SpryMedia_DataTables_\r\n\t\t\t * @dtopt Options\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"sCookiePrefix\": \"my_datatable_\",\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"sCookiePrefix\": \"SpryMedia_DataTables_\",\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * This initialisation variable allows you to specify exactly where in the\r\n\t\t\t * DOM you want DataTables to inject the various controls it adds to the page\r\n\t\t\t * (for example you might want the pagination controls at the top of the\r\n\t\t\t * table). DIV elements (with or without a custom class) can also be added to\r\n\t\t\t * aid styling. The follow syntax is used:\r\n\t\t\t *
\r\n\t\t\t * \r\n\t\t\t * @type string\r\n\t\t\t * @default lfrtip (when bJQueryUI is false)or\r\n\t\t\t * <\"H\"lfr>t<\"F\"ip> (when bJQueryUI is true)\r\n\t\t\t * @dtopt Options\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"sDom\": '<\"top\"i>rt<\"bottom\"flp><\"clear\">'\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"sDom\": \"lfrtip\",\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * DataTables features two different built-in pagination interaction methods\r\n\t\t\t * ('two_button' or 'full_numbers') which present different page controls to\r\n\t\t\t * the end user. Further methods can be added using the API (see below).\r\n\t\t\t * @type string\r\n\t\t\t * @default two_button\r\n\t\t\t * @dtopt Options\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"sPaginationType\": \"full_numbers\"\r\n\t\t * } );\r\n\t\t * } )\r\n\t\t\t */\r\n\t\t\t\"sPaginationType\": \"two_button\",\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Enable horizontal scrolling. When a table is too wide to fit into a certain\r\n\t\t\t * layout, or you have a large number of columns in the table, you can enable\r\n\t\t\t * x-scrolling to show the table in a viewport, which can be scrolled. This\r\n\t\t\t * property can be any CSS unit, or a number (in which case it will be treated\r\n\t\t\t * as a pixel measurement).\r\n\t\t\t * @type string\r\n\t\t\t * @default blank string - i.e. disabled\r\n\t\t\t * @dtopt Features\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"sScrollX\": \"100%\",\r\n\t\t * \"bScrollCollapse\": true\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"sScrollX\": \"\",\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * This property can be used to force a DataTable to use more width than it\r\n\t\t\t * might otherwise do when x-scrolling is enabled. For example if you have a\r\n\t\t\t * table which requires to be well spaced, this parameter is useful for\r\n\t\t\t * \"over-sizing\" the table, and thus forcing scrolling. This property can by\r\n\t\t\t * any CSS unit, or a number (in which case it will be treated as a pixel\r\n\t\t\t * measurement).\r\n\t\t\t * @type string\r\n\t\t\t * @default blank string - i.e. disabled\r\n\t\t\t * @dtopt Options\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"sScrollX\": \"100%\",\r\n\t\t * \"sScrollXInner\": \"110%\"\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"sScrollXInner\": \"\",\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Enable vertical scrolling. Vertical scrolling will constrain the DataTable\r\n\t\t\t * to the given height, and enable scrolling for any data which overflows the\r\n\t\t\t * current viewport. This can be used as an alternative to paging to display\r\n\t\t\t * a lot of data in a small area (although paging and scrolling can both be\r\n\t\t\t * enabled at the same time). This property can be any CSS unit, or a number\r\n\t\t\t * (in which case it will be treated as a pixel measurement).\r\n\t\t\t * @type string\r\n\t\t\t * @default blank string - i.e. disabled\r\n\t\t\t * @dtopt Features\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"sScrollY\": \"200px\",\r\n\t\t * \"bPaginate\": false\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"sScrollY\": \"\",\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Set the HTTP method that is used to make the Ajax call for server-side\r\n\t\t\t * processing or Ajax sourced data.\r\n\t\t\t * @type string\r\n\t\t\t * @default GET\r\n\t\t\t * @dtopt Options\r\n\t\t\t * @dtopt Server-side\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"bServerSide\": true,\r\n\t\t * \"sAjaxSource\": \"scripts/post.php\",\r\n\t\t * \"sServerMethod\": \"POST\"\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"sServerMethod\": \"GET\"\r\n\t\t};\r\n\r\n\r\n\r\n\t\t/**\r\n\t\t * Column options that can be given to DataTables at initialisation time.\r\n\t\t * @namespace\r\n\t\t */\r\n\t\tDataTable.defaults.columns = {\r\n\t\t\t/**\r\n\t\t\t * Allows a column's sorting to take multiple columns into account when\r\n\t\t\t * doing a sort. For example first name / last name columns make sense to\r\n\t\t\t * do a multi-column sort over the two columns.\r\n\t\t\t * @type array\r\n\t\t\t * @default null Takes the value of the column index automatically\r\n\t\t\t * @dtopt Columns\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * // Using aoColumnDefs\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"aoColumnDefs\": [\r\n\t\t * { \"aDataSort\": [ 0, 1 ], \"aTargets\": [ 0 ] },\r\n\t\t * { \"aDataSort\": [ 1, 0 ], \"aTargets\": [ 1 ] },\r\n\t\t * { \"aDataSort\": [ 2, 3, 4 ], \"aTargets\": [ 2 ] }\r\n\t\t * ]\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * // Using aoColumns\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"aoColumns\": [\r\n\t\t * { \"aDataSort\": [ 0, 1 ] },\r\n\t\t * { \"aDataSort\": [ 1, 0 ] },\r\n\t\t * { \"aDataSort\": [ 2, 3, 4 ] },\r\n\t\t * null,\r\n\t\t * null\r\n\t\t * ]\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"aDataSort\": null,\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * You can control the default sorting direction, and even alter the behaviour\r\n\t\t\t * of the sort handler (i.e. only allow ascending sorting etc) using this\r\n\t\t\t * parameter.\r\n\t\t\t * @type array\r\n\t\t\t * @default [ 'asc', 'desc' ]\r\n\t\t\t * @dtopt Columns\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * // Using aoColumnDefs\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"aoColumnDefs\": [\r\n\t\t * { \"asSorting\": [ \"asc\" ], \"aTargets\": [ 1 ] },\r\n\t\t * { \"asSorting\": [ \"desc\", \"asc\", \"asc\" ], \"aTargets\": [ 2 ] },\r\n\t\t * { \"asSorting\": [ \"desc\" ], \"aTargets\": [ 3 ] }\r\n\t\t * ]\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * // Using aoColumns\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"aoColumns\": [\r\n\t\t * null,\r\n\t\t * { \"asSorting\": [ \"asc\" ] },\r\n\t\t * { \"asSorting\": [ \"desc\", \"asc\", \"asc\" ] },\r\n\t\t * { \"asSorting\": [ \"desc\" ] },\r\n\t\t * null\r\n\t\t * ]\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"asSorting\": [ 'asc', 'desc' ],\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Enable or disable filtering on the data in this column.\r\n\t\t\t * @type boolean\r\n\t\t\t * @default true\r\n\t\t\t * @dtopt Columns\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * // Using aoColumnDefs\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"aoColumnDefs\": [ \r\n\t\t * { \"bSearchable\": false, \"aTargets\": [ 0 ] }\r\n\t\t * ] } );\r\n\t\t * } );\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * // Using aoColumns\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"aoColumns\": [ \r\n\t\t * { \"bSearchable\": false },\r\n\t\t * null,\r\n\t\t * null,\r\n\t\t * null,\r\n\t\t * null\r\n\t\t * ] } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"bSearchable\": true,\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Enable or disable sorting on this column.\r\n\t\t\t * @type boolean\r\n\t\t\t * @default true\r\n\t\t\t * @dtopt Columns\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * // Using aoColumnDefs\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"aoColumnDefs\": [ \r\n\t\t * { \"bSortable\": false, \"aTargets\": [ 0 ] }\r\n\t\t * ] } );\r\n\t\t * } );\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * // Using aoColumns\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"aoColumns\": [ \r\n\t\t * { \"bSortable\": false },\r\n\t\t * null,\r\n\t\t * null,\r\n\t\t * null,\r\n\t\t * null\r\n\t\t * ] } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"bSortable\": true,\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Deprecated When using fnRender() for a column, you may wish\r\n\t\t\t * to use the original data (before rendering) for sorting and filtering\r\n\t\t\t * (the default is to used the rendered data that the user can see). This\r\n\t\t\t * may be useful for dates etc.\r\n\t\t\t *\r\n\t\t\t * Please note that this option has now been deprecated and will be removed\r\n\t\t\t * in the next version of DataTables. Please use mRender / mData rather than\r\n\t\t\t * fnRender.\r\n\t\t\t * @type boolean\r\n\t\t\t * @default true\r\n\t\t\t * @dtopt Columns\r\n\t\t\t * @deprecated\r\n\t\t\t */\r\n\t\t\t\"bUseRendered\": true,\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Enable or disable the display of this column.\r\n\t\t\t * @type boolean\r\n\t\t\t * @default true\r\n\t\t\t * @dtopt Columns\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * // Using aoColumnDefs\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"aoColumnDefs\": [ \r\n\t\t * { \"bVisible\": false, \"aTargets\": [ 0 ] }\r\n\t\t * ] } );\r\n\t\t * } );\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * // Using aoColumns\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"aoColumns\": [ \r\n\t\t * { \"bVisible\": false },\r\n\t\t * null,\r\n\t\t * null,\r\n\t\t * null,\r\n\t\t * null\r\n\t\t * ] } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"bVisible\": true,\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Developer definable function that is called whenever a cell is created (Ajax source,\r\n\t\t\t * etc) or processed for input (DOM source). This can be used as a compliment to mRender\r\n\t\t\t * allowing you to modify the DOM element (add background colour for example) when the\r\n\t\t\t * element is available.\r\n\t\t\t * @type function\r\n\t\t\t * @param {element} nTd The TD node that has been created\r\n\t\t\t * @param {*} sData The Data for the cell\r\n\t\t\t * @param {array|object} oData The data for the whole row\r\n\t\t\t * @param {int} iRow The row index for the aoData data store\r\n\t\t\t * @param {int} iCol The column index for aoColumns\r\n\t\t\t * @dtopt Columns\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"aoColumnDefs\": [ {\r\n\t\t * \"aTargets\": [3],\r\n\t\t * \"fnCreatedCell\": function (nTd, sData, oData, iRow, iCol) {\r\n\t\t * if ( sData == \"1.7\" ) {\r\n\t\t * $(nTd).css('color', 'blue')\r\n\t\t * }\r\n\t\t * }\r\n\t\t * } ]\r\n\t\t * });\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"fnCreatedCell\": null,\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Deprecated Custom display function that will be called for the\r\n\t\t\t * display of each cell in this column.\r\n\t\t\t *\r\n\t\t\t * Please note that this option has now been deprecated and will be removed\r\n\t\t\t * in the next version of DataTables. Please use mRender / mData rather than\r\n\t\t\t * fnRender.\r\n\t\t\t * @type function\r\n\t\t\t * @param {object} o Object with the following parameters:\r\n\t\t\t * @param {int} o.iDataRow The row in aoData\r\n\t\t\t * @param {int} o.iDataColumn The column in question\r\n\t\t\t * @param {array} o.aData The data for the row in question\r\n\t\t\t * @param {object} o.oSettings The settings object for this DataTables instance\r\n\t\t\t * @param {object} o.mDataProp The data property used for this column\r\n\t\t\t * @param {*} val The current cell value\r\n\t\t\t * @returns {string} The string you which to use in the display\r\n\t\t\t * @dtopt Columns\r\n\t\t\t * @deprecated\r\n\t\t\t */\r\n\t\t\t\"fnRender\": null,\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * The column index (starting from 0!) that you wish a sort to be performed\r\n\t\t\t * upon when this column is selected for sorting. This can be used for sorting\r\n\t\t\t * on hidden columns for example.\r\n\t\t\t * @type int\r\n\t\t\t * @default -1 Use automatically calculated column index\r\n\t\t\t * @dtopt Columns\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * // Using aoColumnDefs\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"aoColumnDefs\": [ \r\n\t\t * { \"iDataSort\": 1, \"aTargets\": [ 0 ] }\r\n\t\t * ]\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * // Using aoColumns\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"aoColumns\": [ \r\n\t\t * { \"iDataSort\": 1 },\r\n\t\t * null,\r\n\t\t * null,\r\n\t\t * null,\r\n\t\t * null\r\n\t\t * ]\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"iDataSort\": -1,\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * This parameter has been replaced by mData in DataTables to ensure naming\r\n\t\t\t * consistency. mDataProp can still be used, as there is backwards compatibility\r\n\t\t\t * in DataTables for this option, but it is strongly recommended that you use\r\n\t\t\t * mData in preference to mDataProp.\r\n\t\t\t * @name DataTable.defaults.columns.mDataProp\r\n\t\t\t */\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * This property can be used to read data from any JSON data source property,\r\n\t\t\t * including deeply nested objects / properties. mData can be given in a\r\n\t\t\t * number of different ways which effect its behaviour:\r\n\t\t\t *
\r\n\t\t\t *
integer - treated as an array index for the data source. This is the\r\n\t\t\t * default that DataTables uses (incrementally increased for each column).
\r\n\t\t\t *
string - read an object property from the data source. Note that you can\r\n\t\t\t * use Javascript dotted notation to read deep properties / arrays from the\r\n\t\t\t * data source.
\r\n\t\t\t *
null - the sDefaultContent option will be used for the cell (null\r\n\t\t\t * by default, so you will need to specify the default content you want -\r\n\t\t\t * typically an empty string). This can be useful on generated columns such\r\n\t\t\t * as edit / delete action columns.
\r\n\t\t\t *
function - the function given will be executed whenever DataTables\r\n\t\t\t * needs to set or get the data for a cell in the column. The function\r\n\t\t\t * takes three parameters:\r\n\t\t\t *
\r\n\t\t\t *
{array|object} The data source for the row
\r\n\t\t\t *
{string} The type call data requested - this will be 'set' when\r\n\t\t\t * setting data or 'filter', 'display', 'type', 'sort' or undefined when\r\n\t\t\t * gathering data. Note that when undefined is given for the type\r\n\t\t\t * DataTables expects to get the raw data for the object back
\r\n\t\t\t *
{*} Data to set when the second parameter is 'set'.
\r\n\t\t\t *
\r\n\t\t\t * The return value from the function is not required when 'set' is the type\r\n\t\t\t * of call, but otherwise the return is what will be used for the data\r\n\t\t\t * requested.
\r\n\t\t\t *
\r\n\t\t\t *\r\n\t\t\t * Note that prior to DataTables 1.9.2 mData was called mDataProp. The name change\r\n\t\t\t * reflects the flexibility of this property and is consistent with the naming of\r\n\t\t\t * mRender. If 'mDataProp' is given, then it will still be used by DataTables, as\r\n\t\t\t * it automatically maps the old name to the new if required.\r\n\t\t\t * @type string|int|function|null\r\n\t\t\t * @default null Use automatically calculated column index\r\n\t\t\t * @dtopt Columns\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * // Read table data from objects\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * var oTable = $('#example').dataTable( {\r\n\t\t * \"sAjaxSource\": \"sources/deep.txt\",\r\n\t\t * \"aoColumns\": [\r\n\t\t * { \"mData\": \"engine\" },\r\n\t\t * { \"mData\": \"browser\" },\r\n\t\t * { \"mData\": \"platform.inner\" },\r\n\t\t * { \"mData\": \"platform.details.0\" },\r\n\t\t * { \"mData\": \"platform.details.1\" }\r\n\t\t * ]\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * // Using mData as a function to provide different information for\r\n\t\t\t * // sorting, filtering and display. In this case, currency (price)\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * var oTable = $('#example').dataTable( {\r\n\t\t * \"aoColumnDefs\": [ {\r\n\t\t * \"aTargets\": [ 0 ],\r\n\t\t * \"mData\": function ( source, type, val ) {\r\n\t\t * if (type === 'set') {\r\n\t\t * source.price = val;\r\n\t\t * // Store the computed dislay and filter values for efficiency\r\n\t\t * source.price_display = val==\"\" ? \"\" : \"$\"+numberFormat(val);\r\n\t\t * source.price_filter = val==\"\" ? \"\" : \"$\"+numberFormat(val)+\" \"+val;\r\n\t\t * return;\r\n\t\t * }\r\n\t\t * else if (type === 'display') {\r\n\t\t * return source.price_display;\r\n\t\t * }\r\n\t\t * else if (type === 'filter') {\r\n\t\t * return source.price_filter;\r\n\t\t * }\r\n\t\t * // 'sort', 'type' and undefined all just use the integer\r\n\t\t * return source.price;\r\n\t\t * }\r\n\t\t * } ]\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"mData\": null,\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * This property is the rendering partner to mData and it is suggested that\r\n\t\t\t * when you want to manipulate data for display (including filtering, sorting etc)\r\n\t\t\t * but not altering the underlying data for the table, use this property. mData\r\n\t\t\t * can actually do everything this property can and more, but this parameter is\r\n\t\t\t * easier to use since there is no 'set' option. Like mData is can be given\r\n\t\t\t * in a number of different ways to effect its behaviour, with the addition of\r\n\t\t\t * supporting array syntax for easy outputting of arrays (including arrays of\r\n\t\t\t * objects):\r\n\t\t\t *
\r\n\t\t\t *
integer - treated as an array index for the data source. This is the\r\n\t\t\t * default that DataTables uses (incrementally increased for each column).
\r\n\t\t\t *
string - read an object property from the data source. Note that you can\r\n\t\t\t * use Javascript dotted notation to read deep properties / arrays from the\r\n\t\t\t * data source and also array brackets to indicate that the data reader should\r\n\t\t\t * loop over the data source array. When characters are given between the array\r\n\t\t\t * brackets, these characters are used to join the data source array together.\r\n\t\t\t * For example: \"accounts[, ].name\" would result in a comma separated list with\r\n\t\t\t * the 'name' value from the 'accounts' array of objects.
\r\n\t\t\t *
function - the function given will be executed whenever DataTables\r\n\t\t\t * needs to set or get the data for a cell in the column. The function\r\n\t\t\t * takes three parameters:\r\n\t\t\t *
\r\n\t\t\t *
{array|object} The data source for the row (based on mData)
\r\n\t\t\t *
{string} The type call data requested - this will be 'filter', 'display',\r\n\t\t\t * 'type' or 'sort'.
\r\n\t\t\t *
{array|object} The full data source for the row (not based on mData)
\r\n\t\t\t *
\r\n\t\t\t * The return value from the function is what will be used for the data\r\n\t\t\t * requested.
\r\n\t\t\t *
\r\n\t\t\t * @type string|int|function|null\r\n\t\t\t * @default null Use mData\r\n\t\t\t * @dtopt Columns\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * // Create a comma separated list from an array of objects\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * var oTable = $('#example').dataTable( {\r\n\t\t * \"sAjaxSource\": \"sources/deep.txt\",\r\n\t\t * \"aoColumns\": [\r\n\t\t * { \"mData\": \"engine\" },\r\n\t\t * { \"mData\": \"browser\" },\r\n\t\t * {\r\n\t\t * \"mData\": \"platform\",\r\n\t\t * \"mRender\": \"[, ].name\"\r\n\t\t * }\r\n\t\t * ]\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * // Use as a function to create a link from the data source\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * var oTable = $('#example').dataTable( {\r\n\t\t * \"aoColumnDefs\": [\r\n\t\t * {\r\n\t\t * \"aTargets\": [ 0 ],\r\n\t\t * \"mData\": \"download_link\",\r\n\t\t * \"mRender\": function ( data, type, full ) {\r\n\t\t * return 'Download';\r\n\t\t * }\r\n\t\t * ]\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t */\r\n\t\t\t\"mRender\": null,\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Change the cell type created for the column - either TD cells or TH cells. This\r\n\t\t\t * can be useful as TH cells have semantic meaning in the table body, allowing them\r\n\t\t\t * to act as a header for a row (you may wish to add scope='row' to the TH elements).\r\n\t\t\t * @type string\r\n\t\t\t * @default td\r\n\t\t\t * @dtopt Columns\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * // Make the first column use TH cells\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * var oTable = $('#example').dataTable( {\r\n\t\t * \"aoColumnDefs\": [ {\r\n\t\t * \"aTargets\": [ 0 ],\r\n\t\t * \"sCellType\": \"th\"\r\n\t\t * } ]\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"sCellType\": \"td\",\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Class to give to each cell in this column.\r\n\t\t\t * @type string\r\n\t\t\t * @default Empty string\r\n\t\t\t * @dtopt Columns\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * // Using aoColumnDefs\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"aoColumnDefs\": [ \r\n\t\t * { \"sClass\": \"my_class\", \"aTargets\": [ 0 ] }\r\n\t\t * ]\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * // Using aoColumns\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"aoColumns\": [ \r\n\t\t * { \"sClass\": \"my_class\" },\r\n\t\t * null,\r\n\t\t * null,\r\n\t\t * null,\r\n\t\t * null\r\n\t\t * ]\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"sClass\": \"\",\r\n\r\n\t\t\t/**\r\n\t\t\t * When DataTables calculates the column widths to assign to each column,\r\n\t\t\t * it finds the longest string in each column and then constructs a\r\n\t\t\t * temporary table and reads the widths from that. The problem with this\r\n\t\t\t * is that \"mmm\" is much wider then \"iiii\", but the latter is a longer\r\n\t\t\t * string - thus the calculation can go wrong (doing it properly and putting\r\n\t\t\t * it into an DOM object and measuring that is horribly(!) slow). Thus as\r\n\t\t\t * a \"work around\" we provide this option. It will append its value to the\r\n\t\t\t * text that is found to be the longest string for the column - i.e. padding.\r\n\t\t\t * Generally you shouldn't need this, and it is not documented on the\r\n\t\t\t * general DataTables.net documentation\r\n\t\t\t * @type string\r\n\t\t\t * @default Empty string\r\n\t\t\t * @dtopt Columns\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * // Using aoColumns\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"aoColumns\": [ \r\n\t\t * null,\r\n\t\t * null,\r\n\t\t * null,\r\n\t\t * {\r\n\t\t * \"sContentPadding\": \"mmm\"\r\n\t\t * }\r\n\t\t * ]\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"sContentPadding\": \"\",\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Allows a default value to be given for a column's data, and will be used\r\n\t\t\t * whenever a null data source is encountered (this can be because mData\r\n\t\t\t * is set to null, or because the data source itself is null).\r\n\t\t\t * @type string\r\n\t\t\t * @default null\r\n\t\t\t * @dtopt Columns\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * // Using aoColumnDefs\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"aoColumnDefs\": [ \r\n\t\t * {\r\n\t\t * \"mData\": null,\r\n\t\t * \"sDefaultContent\": \"Edit\",\r\n\t\t * \"aTargets\": [ -1 ]\r\n\t\t * }\r\n\t\t * ]\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * // Using aoColumns\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"aoColumns\": [ \r\n\t\t * null,\r\n\t\t * null,\r\n\t\t * null,\r\n\t\t * {\r\n\t\t * \"mData\": null,\r\n\t\t * \"sDefaultContent\": \"Edit\"\r\n\t\t * }\r\n\t\t * ]\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"sDefaultContent\": null,\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * This parameter is only used in DataTables' server-side processing. It can\r\n\t\t\t * be exceptionally useful to know what columns are being displayed on the\r\n\t\t\t * client side, and to map these to database fields. When defined, the names\r\n\t\t\t * also allow DataTables to reorder information from the server if it comes\r\n\t\t\t * back in an unexpected order (i.e. if you switch your columns around on the\r\n\t\t\t * client-side, your server-side code does not also need updating).\r\n\t\t\t * @type string\r\n\t\t\t * @default Empty string\r\n\t\t\t * @dtopt Columns\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * // Using aoColumnDefs\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"aoColumnDefs\": [ \r\n\t\t * { \"sName\": \"engine\", \"aTargets\": [ 0 ] },\r\n\t\t * { \"sName\": \"browser\", \"aTargets\": [ 1 ] },\r\n\t\t * { \"sName\": \"platform\", \"aTargets\": [ 2 ] },\r\n\t\t * { \"sName\": \"version\", \"aTargets\": [ 3 ] },\r\n\t\t * { \"sName\": \"grade\", \"aTargets\": [ 4 ] }\r\n\t\t * ]\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * // Using aoColumns\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"aoColumns\": [ \r\n\t\t * { \"sName\": \"engine\" },\r\n\t\t * { \"sName\": \"browser\" },\r\n\t\t * { \"sName\": \"platform\" },\r\n\t\t * { \"sName\": \"version\" },\r\n\t\t * { \"sName\": \"grade\" }\r\n\t\t * ]\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"sName\": \"\",\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Defines a data source type for the sorting which can be used to read\r\n\t\t\t * real-time information from the table (updating the internally cached\r\n\t\t\t * version) prior to sorting. This allows sorting to occur on user editable\r\n\t\t\t * elements such as form inputs.\r\n\t\t\t * @type string\r\n\t\t\t * @default std\r\n\t\t\t * @dtopt Columns\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * // Using aoColumnDefs\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"aoColumnDefs\": [\r\n\t\t * { \"sSortDataType\": \"dom-text\", \"aTargets\": [ 2, 3 ] },\r\n\t\t * { \"sType\": \"numeric\", \"aTargets\": [ 3 ] },\r\n\t\t * { \"sSortDataType\": \"dom-select\", \"aTargets\": [ 4 ] },\r\n\t\t * { \"sSortDataType\": \"dom-checkbox\", \"aTargets\": [ 5 ] }\r\n\t\t * ]\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * // Using aoColumns\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"aoColumns\": [\r\n\t\t * null,\r\n\t\t * null,\r\n\t\t * { \"sSortDataType\": \"dom-text\" },\r\n\t\t * { \"sSortDataType\": \"dom-text\", \"sType\": \"numeric\" },\r\n\t\t * { \"sSortDataType\": \"dom-select\" },\r\n\t\t * { \"sSortDataType\": \"dom-checkbox\" }\r\n\t\t * ]\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"sSortDataType\": \"std\",\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * The title of this column.\r\n\t\t\t * @type string\r\n\t\t\t * @default null Derived from the 'TH' value for this column in the\r\n\t\t\t * original HTML table.\r\n\t\t\t * @dtopt Columns\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * // Using aoColumnDefs\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"aoColumnDefs\": [ \r\n\t\t * { \"sTitle\": \"My column title\", \"aTargets\": [ 0 ] }\r\n\t\t * ]\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * // Using aoColumns\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"aoColumns\": [ \r\n\t\t * { \"sTitle\": \"My column title\" },\r\n\t\t * null,\r\n\t\t * null,\r\n\t\t * null,\r\n\t\t * null\r\n\t\t * ]\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"sTitle\": null,\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * The type allows you to specify how the data for this column will be sorted.\r\n\t\t\t * Four types (string, numeric, date and html (which will strip HTML tags\r\n\t\t\t * before sorting)) are currently available. Note that only date formats\r\n\t\t\t * understood by Javascript's Date() object will be accepted as type date. For\r\n\t\t\t * example: \"Mar 26, 2008 5:03 PM\". May take the values: 'string', 'numeric',\r\n\t\t\t * 'date' or 'html' (by default). Further types can be adding through\r\n\t\t\t * plug-ins.\r\n\t\t\t * @type string\r\n\t\t\t * @default null Auto-detected from raw data\r\n\t\t\t * @dtopt Columns\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * // Using aoColumnDefs\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"aoColumnDefs\": [ \r\n\t\t * { \"sType\": \"html\", \"aTargets\": [ 0 ] }\r\n\t\t * ]\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * // Using aoColumns\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"aoColumns\": [ \r\n\t\t * { \"sType\": \"html\" },\r\n\t\t * null,\r\n\t\t * null,\r\n\t\t * null,\r\n\t\t * null\r\n\t\t * ]\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"sType\": null,\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Defining the width of the column, this parameter may take any CSS value\r\n\t\t\t * (3em, 20px etc). DataTables apples 'smart' widths to columns which have not\r\n\t\t\t * been given a specific width through this interface ensuring that the table\r\n\t\t\t * remains readable.\r\n\t\t\t * @type string\r\n\t\t\t * @default null Automatic\r\n\t\t\t * @dtopt Columns\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * // Using aoColumnDefs\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"aoColumnDefs\": [ \r\n\t\t * { \"sWidth\": \"20%\", \"aTargets\": [ 0 ] }\r\n\t\t * ]\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t *\r\n\t\t\t * @example\r\n\t\t\t * // Using aoColumns\r\n\t\t\t * $(document).ready( function() {\r\n\t\t * $('#example').dataTable( {\r\n\t\t * \"aoColumns\": [ \r\n\t\t * { \"sWidth\": \"20%\" },\r\n\t\t * null,\r\n\t\t * null,\r\n\t\t * null,\r\n\t\t * null\r\n\t\t * ]\r\n\t\t * } );\r\n\t\t * } );\r\n\t\t\t */\r\n\t\t\t\"sWidth\": null\r\n\t\t};\r\n\r\n\r\n\r\n\t\t/**\r\n\t\t * DataTables settings object - this holds all the information needed for a\r\n\t\t * given table, including configuration, data and current application of the\r\n\t\t * table options. DataTables does not have a single instance for each DataTable\r\n\t\t * with the settings attached to that instance, but rather instances of the\r\n\t\t * DataTable \"class\" are created on-the-fly as needed (typically by a\r\n\t\t * $().dataTable() call) and the settings object is then applied to that\r\n\t\t * instance.\r\n\t\t *\r\n\t\t * Note that this object is related to {@link DataTable.defaults} but this\r\n\t\t * one is the internal data store for DataTables's cache of columns. It should\r\n\t\t * NOT be manipulated outside of DataTables. Any configuration should be done\r\n\t\t * through the initialisation options.\r\n\t\t * @namespace\r\n\t\t * @todo Really should attach the settings object to individual instances so we\r\n\t\t * don't need to create new instances on each $().dataTable() call (if the\r\n\t\t * table already exists). It would also save passing oSettings around and\r\n\t\t * into every single function. However, this is a very significant\r\n\t\t * architecture change for DataTables and will almost certainly break\r\n\t\t * backwards compatibility with older installations. This is something that\r\n\t\t * will be done in 2.0.\r\n\t\t */\r\n\t\tDataTable.models.oSettings = {\r\n\t\t\t/**\r\n\t\t\t * Primary features of DataTables and their enablement state.\r\n\t\t\t * @namespace\r\n\t\t\t */\r\n\t\t\t\"oFeatures\": {\r\n\r\n\t\t\t\t/**\r\n\t\t\t\t * Flag to say if DataTables should automatically try to calculate the\r\n\t\t\t\t * optimum table and columns widths (true) or not (false).\r\n\t\t\t\t * Note that this parameter will be set by the initialisation routine. To\r\n\t\t\t\t * set a default use {@link DataTable.defaults}.\r\n\t\t\t\t * @type boolean\r\n\t\t\t\t */\r\n\t\t\t\t\"bAutoWidth\": null,\r\n\r\n\t\t\t\t/**\r\n\t\t\t\t * Delay the creation of TR and TD elements until they are actually\r\n\t\t\t\t * needed by a driven page draw. This can give a significant speed\r\n\t\t\t\t * increase for Ajax source and Javascript source data, but makes no\r\n\t\t\t\t * difference at all fro DOM and server-side processing tables.\r\n\t\t\t\t * Note that this parameter will be set by the initialisation routine. To\r\n\t\t\t\t * set a default use {@link DataTable.defaults}.\r\n\t\t\t\t * @type boolean\r\n\t\t\t\t */\r\n\t\t\t\t\"bDeferRender\": null,\r\n\r\n\t\t\t\t/**\r\n\t\t\t\t * Enable filtering on the table or not. Note that if this is disabled\r\n\t\t\t\t * then there is no filtering at all on the table, including fnFilter.\r\n\t\t\t\t * To just remove the filtering input use sDom and remove the 'f' option.\r\n\t\t\t\t * Note that this parameter will be set by the initialisation routine. To\r\n\t\t\t\t * set a default use {@link DataTable.defaults}.\r\n\t\t\t\t * @type boolean\r\n\t\t\t\t */\r\n\t\t\t\t\"bFilter\": null,\r\n\r\n\t\t\t\t/**\r\n\t\t\t\t * Table information element (the 'Showing x of y records' div) enable\r\n\t\t\t\t * flag.\r\n\t\t\t\t * Note that this parameter will be set by the initialisation routine. To\r\n\t\t\t\t * set a default use {@link DataTable.defaults}.\r\n\t\t\t\t * @type boolean\r\n\t\t\t\t */\r\n\t\t\t\t\"bInfo\": null,\r\n\r\n\t\t\t\t/**\r\n\t\t\t\t * Present a user control allowing the end user to change the page size\r\n\t\t\t\t * when pagination is enabled.\r\n\t\t\t\t * Note that this parameter will be set by the initialisation routine. To\r\n\t\t\t\t * set a default use {@link DataTable.defaults}.\r\n\t\t\t\t * @type boolean\r\n\t\t\t\t */\r\n\t\t\t\t\"bLengthChange\": null,\r\n\r\n\t\t\t\t/**\r\n\t\t\t\t * Pagination enabled or not. Note that if this is disabled then length\r\n\t\t\t\t * changing must also be disabled.\r\n\t\t\t\t * Note that this parameter will be set by the initialisation routine. To\r\n\t\t\t\t * set a default use {@link DataTable.defaults}.\r\n\t\t\t\t * @type boolean\r\n\t\t\t\t */\r\n\t\t\t\t\"bPaginate\": null,\r\n\r\n\t\t\t\t/**\r\n\t\t\t\t * Processing indicator enable flag whenever DataTables is enacting a\r\n\t\t\t\t * user request - typically an Ajax request for server-side processing.\r\n\t\t\t\t * Note that this parameter will be set by the initialisation routine. To\r\n\t\t\t\t * set a default use {@link DataTable.defaults}.\r\n\t\t\t\t * @type boolean\r\n\t\t\t\t */\r\n\t\t\t\t\"bProcessing\": null,\r\n\r\n\t\t\t\t/**\r\n\t\t\t\t * Server-side processing enabled flag - when enabled DataTables will\r\n\t\t\t\t * get all data from the server for every draw - there is no filtering,\r\n\t\t\t\t * sorting or paging done on the client-side.\r\n\t\t\t\t * Note that this parameter will be set by the initialisation routine. To\r\n\t\t\t\t * set a default use {@link DataTable.defaults}.\r\n\t\t\t\t * @type boolean\r\n\t\t\t\t */\r\n\t\t\t\t\"bServerSide\": null,\r\n\r\n\t\t\t\t/**\r\n\t\t\t\t * Sorting enablement flag.\r\n\t\t\t\t * Note that this parameter will be set by the initialisation routine. To\r\n\t\t\t\t * set a default use {@link DataTable.defaults}.\r\n\t\t\t\t * @type boolean\r\n\t\t\t\t */\r\n\t\t\t\t\"bSort\": null,\r\n\r\n\t\t\t\t/**\r\n\t\t\t\t * Apply a class to the columns which are being sorted to provide a\r\n\t\t\t\t * visual highlight or not. This can slow things down when enabled since\r\n\t\t\t\t * there is a lot of DOM interaction.\r\n\t\t\t\t * Note that this parameter will be set by the initialisation routine. To\r\n\t\t\t\t * set a default use {@link DataTable.defaults}.\r\n\t\t\t\t * @type boolean\r\n\t\t\t\t */\r\n\t\t\t\t\"bSortClasses\": null,\r\n\r\n\t\t\t\t/**\r\n\t\t\t\t * State saving enablement flag.\r\n\t\t\t\t * Note that this parameter will be set by the initialisation routine. To\r\n\t\t\t\t * set a default use {@link DataTable.defaults}.\r\n\t\t\t\t * @type boolean\r\n\t\t\t\t */\r\n\t\t\t\t\"bStateSave\": null\r\n\t\t\t},\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Scrolling settings for a table.\r\n\t\t\t * @namespace\r\n\t\t\t */\r\n\t\t\t\"oScroll\": {\r\n\t\t\t\t/**\r\n\t\t\t\t * Indicate if DataTables should be allowed to set the padding / margin\r\n\t\t\t\t * etc for the scrolling header elements or not. Typically you will want\r\n\t\t\t\t * this.\r\n\t\t\t\t * Note that this parameter will be set by the initialisation routine. To\r\n\t\t\t\t * set a default use {@link DataTable.defaults}.\r\n\t\t\t\t * @type boolean\r\n\t\t\t\t */\r\n\t\t\t\t\"bAutoCss\": null,\r\n\r\n\t\t\t\t/**\r\n\t\t\t\t * When the table is shorter in height than sScrollY, collapse the\r\n\t\t\t\t * table container down to the height of the table (when true).\r\n\t\t\t\t * Note that this parameter will be set by the initialisation routine. To\r\n\t\t\t\t * set a default use {@link DataTable.defaults}.\r\n\t\t\t\t * @type boolean\r\n\t\t\t\t */\r\n\t\t\t\t\"bCollapse\": null,\r\n\r\n\t\t\t\t/**\r\n\t\t\t\t * Infinite scrolling enablement flag. Now deprecated in favour of\r\n\t\t\t\t * using the Scroller plug-in.\r\n\t\t\t\t * Note that this parameter will be set by the initialisation routine. To\r\n\t\t\t\t * set a default use {@link DataTable.defaults}.\r\n\t\t\t\t * @type boolean\r\n\t\t\t\t */\r\n\t\t\t\t\"bInfinite\": null,\r\n\r\n\t\t\t\t/**\r\n\t\t\t\t * Width of the scrollbar for the web-browser's platform. Calculated\r\n\t\t\t\t * during table initialisation.\r\n\t\t\t\t * @type int\r\n\t\t\t\t * @default 0\r\n\t\t\t\t */\r\n\t\t\t\t\"iBarWidth\": 0,\r\n\r\n\t\t\t\t/**\r\n\t\t\t\t * Space (in pixels) between the bottom of the scrolling container and\r\n\t\t\t\t * the bottom of the scrolling viewport before the next page is loaded\r\n\t\t\t\t * when using infinite scrolling.\r\n\t\t\t\t * Note that this parameter will be set by the initialisation routine. To\r\n\t\t\t\t * set a default use {@link DataTable.defaults}.\r\n\t\t\t\t * @type int\r\n\t\t\t\t */\r\n\t\t\t\t\"iLoadGap\": null,\r\n\r\n\t\t\t\t/**\r\n\t\t\t\t * Viewport width for horizontal scrolling. Horizontal scrolling is\r\n\t\t\t\t * disabled if an empty string.\r\n\t\t\t\t * Note that this parameter will be set by the initialisation routine. To\r\n\t\t\t\t * set a default use {@link DataTable.defaults}.\r\n\t\t\t\t * @type string\r\n\t\t\t\t */\r\n\t\t\t\t\"sX\": null,\r\n\r\n\t\t\t\t/**\r\n\t\t\t\t * Width to expand the table to when using x-scrolling. Typically you\r\n\t\t\t\t * should not need to use this.\r\n\t\t\t\t * Note that this parameter will be set by the initialisation routine. To\r\n\t\t\t\t * set a default use {@link DataTable.defaults}.\r\n\t\t\t\t * @type string\r\n\t\t\t\t * @deprecated\r\n\t\t\t\t */\r\n\t\t\t\t\"sXInner\": null,\r\n\r\n\t\t\t\t/**\r\n\t\t\t\t * Viewport height for vertical scrolling. Vertical scrolling is disabled\r\n\t\t\t\t * if an empty string.\r\n\t\t\t\t * Note that this parameter will be set by the initialisation routine. To\r\n\t\t\t\t * set a default use {@link DataTable.defaults}.\r\n\t\t\t\t * @type string\r\n\t\t\t\t */\r\n\t\t\t\t\"sY\": null\r\n\t\t\t},\r\n\r\n\t\t\t/**\r\n\t\t\t * Language information for the table.\r\n\t\t\t * @namespace\r\n\t\t\t * @extends DataTable.defaults.oLanguage\r\n\t\t\t */\r\n\t\t\t\"oLanguage\": {\r\n\t\t\t\t/**\r\n\t\t\t\t * Information callback function. See\r\n\t\t\t\t * {@link DataTable.defaults.fnInfoCallback}\r\n\t\t\t\t * @type function\r\n\t\t\t\t * @default null\r\n\t\t\t\t */\r\n\t\t\t\t\"fnInfoCallback\": null\r\n\t\t\t},\r\n\r\n\t\t\t/**\r\n\t\t\t * Browser support parameters\r\n\t\t\t * @namespace\r\n\t\t\t */\r\n\t\t\t\"oBrowser\": {\r\n\t\t\t\t/**\r\n\t\t\t\t * Indicate if the browser incorrectly calculates width:100% inside a\r\n\t\t\t\t * scrolling element (IE6/7)\r\n\t\t\t\t * @type boolean\r\n\t\t\t\t * @default false\r\n\t\t\t\t */\r\n\t\t\t\t\"bScrollOversize\": false\r\n\t\t\t},\r\n\r\n\t\t\t/**\r\n\t\t\t * Array referencing the nodes which are used for the features. The\r\n\t\t\t * parameters of this object match what is allowed by sDom - i.e.\r\n\t\t\t *
\r\n\t\t\t *
'l' - Length changing
\r\n\t\t\t *
'f' - Filtering input
\r\n\t\t\t *
't' - The table!
\r\n\t\t\t *
'i' - Information
\r\n\t\t\t *
'p' - Pagination
\r\n\t\t\t *
'r' - pRocessing
\r\n\t\t\t *
\r\n\t\t\t * @type array\r\n\t\t\t * @default []\r\n\t\t\t */\r\n\t\t\t\"aanFeatures\": [],\r\n\r\n\t\t\t/**\r\n\t\t\t * Store data information - see {@link DataTable.models.oRow} for detailed\r\n\t\t\t * information.\r\n\t\t\t * @type array\r\n\t\t\t * @default []\r\n\t\t\t */\r\n\t\t\t\"aoData\": [],\r\n\r\n\t\t\t/**\r\n\t\t\t * Array of indexes which are in the current display (after filtering etc)\r\n\t\t\t * @type array\r\n\t\t\t * @default []\r\n\t\t\t */\r\n\t\t\t\"aiDisplay\": [],\r\n\r\n\t\t\t/**\r\n\t\t\t * Array of indexes for display - no filtering\r\n\t\t\t * @type array\r\n\t\t\t * @default []\r\n\t\t\t */\r\n\t\t\t\"aiDisplayMaster\": [],\r\n\r\n\t\t\t/**\r\n\t\t\t * Store information about each column that is in use\r\n\t\t\t * @type array\r\n\t\t\t * @default []\r\n\t\t\t */\r\n\t\t\t\"aoColumns\": [],\r\n\r\n\t\t\t/**\r\n\t\t\t * Store information about the table's header\r\n\t\t\t * @type array\r\n\t\t\t * @default []\r\n\t\t\t */\r\n\t\t\t\"aoHeader\": [],\r\n\r\n\t\t\t/**\r\n\t\t\t * Store information about the table's footer\r\n\t\t\t * @type array\r\n\t\t\t * @default []\r\n\t\t\t */\r\n\t\t\t\"aoFooter\": [],\r\n\r\n\t\t\t/**\r\n\t\t\t * Search data array for regular expression searching\r\n\t\t\t * @type array\r\n\t\t\t * @default []\r\n\t\t\t */\r\n\t\t\t\"asDataSearch\": [],\r\n\r\n\t\t\t/**\r\n\t\t\t * Store the applied global search information in case we want to force a\r\n\t\t\t * research or compare the old search to a new one.\r\n\t\t\t * Note that this parameter will be set by the initialisation routine. To\r\n\t\t\t * set a default use {@link DataTable.defaults}.\r\n\t\t\t * @namespace\r\n\t\t\t * @extends DataTable.models.oSearch\r\n\t\t\t */\r\n\t\t\t\"oPreviousSearch\": {},\r\n\r\n\t\t\t/**\r\n\t\t\t * Store the applied search for each column - see\r\n\t\t\t * {@link DataTable.models.oSearch} for the format that is used for the\r\n\t\t\t * filtering information for each column.\r\n\t\t\t * @type array\r\n\t\t\t * @default []\r\n\t\t\t */\r\n\t\t\t\"aoPreSearchCols\": [],\r\n\r\n\t\t\t/**\r\n\t\t\t * Sorting that is applied to the table. Note that the inner arrays are\r\n\t\t\t * used in the following manner:\r\n\t\t\t *
\r\n\t\t\t *
Index 0 - column number
\r\n\t\t\t *
Index 1 - current sorting direction
\r\n\t\t\t *
Index 2 - index of asSorting for this column
\r\n\t\t\t *
\r\n\t\t\t * Note that this parameter will be set by the initialisation routine. To\r\n\t\t\t * set a default use {@link DataTable.defaults}.\r\n\t\t\t * @type array\r\n\t\t\t * @todo These inner arrays should really be objects\r\n\t\t\t */\r\n\t\t\t\"aaSorting\": null,\r\n\r\n\t\t\t/**\r\n\t\t\t * Sorting that is always applied to the table (i.e. prefixed in front of\r\n\t\t\t * aaSorting).\r\n\t\t\t * Note that this parameter will be set by the initialisation routine. To\r\n\t\t\t * set a default use {@link DataTable.defaults}.\r\n\t\t\t * @type array|null\r\n\t\t\t * @default null\r\n\t\t\t */\r\n\t\t\t\"aaSortingFixed\": null,\r\n\r\n\t\t\t/**\r\n\t\t\t * Classes to use for the striping of a table.\r\n\t\t\t * Note that this parameter will be set by the initialisation routine. To\r\n\t\t\t * set a default use {@link DataTable.defaults}.\r\n\t\t\t * @type array\r\n\t\t\t * @default []\r\n\t\t\t */\r\n\t\t\t\"asStripeClasses\": null,\r\n\r\n\t\t\t/**\r\n\t\t\t * If restoring a table - we should restore its striping classes as well\r\n\t\t\t * @type array\r\n\t\t\t * @default []\r\n\t\t\t */\r\n\t\t\t\"asDestroyStripes\": [],\r\n\r\n\t\t\t/**\r\n\t\t\t * If restoring a table - we should restore its width\r\n\t\t\t * @type int\r\n\t\t\t * @default 0\r\n\t\t\t */\r\n\t\t\t\"sDestroyWidth\": 0,\r\n\r\n\t\t\t/**\r\n\t\t\t * Callback functions array for every time a row is inserted (i.e. on a draw).\r\n\t\t\t * @type array\r\n\t\t\t * @default []\r\n\t\t\t */\r\n\t\t\t\"aoRowCallback\": [],\r\n\r\n\t\t\t/**\r\n\t\t\t * Callback functions for the header on each draw.\r\n\t\t\t * @type array\r\n\t\t\t * @default []\r\n\t\t\t */\r\n\t\t\t\"aoHeaderCallback\": [],\r\n\r\n\t\t\t/**\r\n\t\t\t * Callback function for the footer on each draw.\r\n\t\t\t * @type array\r\n\t\t\t * @default []\r\n\t\t\t */\r\n\t\t\t\"aoFooterCallback\": [],\r\n\r\n\t\t\t/**\r\n\t\t\t * Array of callback functions for draw callback functions\r\n\t\t\t * @type array\r\n\t\t\t * @default []\r\n\t\t\t */\r\n\t\t\t\"aoDrawCallback\": [],\r\n\r\n\t\t\t/**\r\n\t\t\t * Array of callback functions for row created function\r\n\t\t\t * @type array\r\n\t\t\t * @default []\r\n\t\t\t */\r\n\t\t\t\"aoRowCreatedCallback\": [],\r\n\r\n\t\t\t/**\r\n\t\t\t * Callback functions for just before the table is redrawn. A return of\r\n\t\t\t * false will be used to cancel the draw.\r\n\t\t\t * @type array\r\n\t\t\t * @default []\r\n\t\t\t */\r\n\t\t\t\"aoPreDrawCallback\": [],\r\n\r\n\t\t\t/**\r\n\t\t\t * Callback functions for when the table has been initialised.\r\n\t\t\t * @type array\r\n\t\t\t * @default []\r\n\t\t\t */\r\n\t\t\t\"aoInitComplete\": [],\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Callbacks for modifying the settings to be stored for state saving, prior to\r\n\t\t\t * saving state.\r\n\t\t\t * @type array\r\n\t\t\t * @default []\r\n\t\t\t */\r\n\t\t\t\"aoStateSaveParams\": [],\r\n\r\n\t\t\t/**\r\n\t\t\t * Callbacks for modifying the settings that have been stored for state saving\r\n\t\t\t * prior to using the stored values to restore the state.\r\n\t\t\t * @type array\r\n\t\t\t * @default []\r\n\t\t\t */\r\n\t\t\t\"aoStateLoadParams\": [],\r\n\r\n\t\t\t/**\r\n\t\t\t * Callbacks for operating on the settings object once the saved state has been\r\n\t\t\t * loaded\r\n\t\t\t * @type array\r\n\t\t\t * @default []\r\n\t\t\t */\r\n\t\t\t\"aoStateLoaded\": [],\r\n\r\n\t\t\t/**\r\n\t\t\t * Cache the table ID for quick access\r\n\t\t\t * @type string\r\n\t\t\t * @default Empty string\r\n\t\t\t */\r\n\t\t\t\"sTableId\": \"\",\r\n\r\n\t\t\t/**\r\n\t\t\t * The TABLE node for the main table\r\n\t\t\t * @type node\r\n\t\t\t * @default null\r\n\t\t\t */\r\n\t\t\t\"nTable\": null,\r\n\r\n\t\t\t/**\r\n\t\t\t * Permanent ref to the thead element\r\n\t\t\t * @type node\r\n\t\t\t * @default null\r\n\t\t\t */\r\n\t\t\t\"nTHead\": null,\r\n\r\n\t\t\t/**\r\n\t\t\t * Permanent ref to the tfoot element - if it exists\r\n\t\t\t * @type node\r\n\t\t\t * @default null\r\n\t\t\t */\r\n\t\t\t\"nTFoot\": null,\r\n\r\n\t\t\t/**\r\n\t\t\t * Permanent ref to the tbody element\r\n\t\t\t * @type node\r\n\t\t\t * @default null\r\n\t\t\t */\r\n\t\t\t\"nTBody\": null,\r\n\r\n\t\t\t/**\r\n\t\t\t * Cache the wrapper node (contains all DataTables controlled elements)\r\n\t\t\t * @type node\r\n\t\t\t * @default null\r\n\t\t\t */\r\n\t\t\t\"nTableWrapper\": null,\r\n\r\n\t\t\t/**\r\n\t\t\t * Indicate if when using server-side processing the loading of data\r\n\t\t\t * should be deferred until the second draw.\r\n\t\t\t * Note that this parameter will be set by the initialisation routine. To\r\n\t\t\t * set a default use {@link DataTable.defaults}.\r\n\t\t\t * @type boolean\r\n\t\t\t * @default false\r\n\t\t\t */\r\n\t\t\t\"bDeferLoading\": false,\r\n\r\n\t\t\t/**\r\n\t\t\t * Indicate if all required information has been read in\r\n\t\t\t * @type boolean\r\n\t\t\t * @default false\r\n\t\t\t */\r\n\t\t\t\"bInitialised\": false,\r\n\r\n\t\t\t/**\r\n\t\t\t * Information about open rows. Each object in the array has the parameters\r\n\t\t\t * 'nTr' and 'nParent'\r\n\t\t\t * @type array\r\n\t\t\t * @default []\r\n\t\t\t */\r\n\t\t\t\"aoOpenRows\": [],\r\n\r\n\t\t\t/**\r\n\t\t\t * Dictate the positioning of DataTables' control elements - see\r\n\t\t\t * {@link DataTable.model.oInit.sDom}.\r\n\t\t\t * Note that this parameter will be set by the initialisation routine. To\r\n\t\t\t * set a default use {@link DataTable.defaults}.\r\n\t\t\t * @type string\r\n\t\t\t * @default null\r\n\t\t\t */\r\n\t\t\t\"sDom\": null,\r\n\r\n\t\t\t/**\r\n\t\t\t * Which type of pagination should be used.\r\n\t\t\t * Note that this parameter will be set by the initialisation routine. To\r\n\t\t\t * set a default use {@link DataTable.defaults}.\r\n\t\t\t * @type string\r\n\t\t\t * @default two_button\r\n\t\t\t */\r\n\t\t\t\"sPaginationType\": \"two_button\",\r\n\r\n\t\t\t/**\r\n\t\t\t * The cookie duration (for bStateSave) in seconds.\r\n\t\t\t * Note that this parameter will be set by the initialisation routine. To\r\n\t\t\t * set a default use {@link DataTable.defaults}.\r\n\t\t\t * @type int\r\n\t\t\t * @default 0\r\n\t\t\t */\r\n\t\t\t\"iCookieDuration\": 0,\r\n\r\n\t\t\t/**\r\n\t\t\t * The cookie name prefix.\r\n\t\t\t * Note that this parameter will be set by the initialisation routine. To\r\n\t\t\t * set a default use {@link DataTable.defaults}.\r\n\t\t\t * @type string\r\n\t\t\t * @default Empty string\r\n\t\t\t */\r\n\t\t\t\"sCookiePrefix\": \"\",\r\n\r\n\t\t\t/**\r\n\t\t\t * Callback function for cookie creation.\r\n\t\t\t * Note that this parameter will be set by the initialisation routine. To\r\n\t\t\t * set a default use {@link DataTable.defaults}.\r\n\t\t\t * @type function\r\n\t\t\t * @default null\r\n\t\t\t */\r\n\t\t\t\"fnCookieCallback\": null,\r\n\r\n\t\t\t/**\r\n\t\t\t * Array of callback functions for state saving. Each array element is an\r\n\t\t\t * object with the following parameters:\r\n\t\t\t *
\r\n\t\t\t *
function:fn - function to call. Takes two parameters, oSettings\r\n\t\t\t * and the JSON string to save that has been thus far created. Returns\r\n\t\t\t * a JSON string to be inserted into a json object\r\n\t\t\t * (i.e. '\"param\": [ 0, 1, 2]')
\r\n\t\t\t *
string:sName - name of callback
\r\n\t\t\t *
\r\n\t\t\t * @type array\r\n\t\t\t * @default []\r\n\t\t\t */\r\n\t\t\t\"aoStateSave\": [],\r\n\r\n\t\t\t/**\r\n\t\t\t * Array of callback functions for state loading. Each array element is an\r\n\t\t\t * object with the following parameters:\r\n\t\t\t *
\r\n\t\t\t *
function:fn - function to call. Takes two parameters, oSettings\r\n\t\t\t * and the object stored. May return false to cancel state loading
\r\n\t\t\t *
string:sName - name of callback
\r\n\t\t\t *
\r\n\t\t\t * @type array\r\n\t\t\t * @default []\r\n\t\t\t */\r\n\t\t\t\"aoStateLoad\": [],\r\n\r\n\t\t\t/**\r\n\t\t\t * State that was loaded from the cookie. Useful for back reference\r\n\t\t\t * @type object\r\n\t\t\t * @default null\r\n\t\t\t */\r\n\t\t\t\"oLoadedState\": null,\r\n\r\n\t\t\t/**\r\n\t\t\t * Source url for AJAX data for the table.\r\n\t\t\t * Note that this parameter will be set by the initialisation routine. To\r\n\t\t\t * set a default use {@link DataTable.defaults}.\r\n\t\t\t * @type string\r\n\t\t\t * @default null\r\n\t\t\t */\r\n\t\t\t\"sAjaxSource\": null,\r\n\r\n\t\t\t/**\r\n\t\t\t * Property from a given object from which to read the table data from. This\r\n\t\t\t * can be an empty string (when not server-side processing), in which case\r\n\t\t\t * it is assumed an an array is given directly.\r\n\t\t\t * Note that this parameter will be set by the initialisation routine. To\r\n\t\t\t * set a default use {@link DataTable.defaults}.\r\n\t\t\t * @type string\r\n\t\t\t */\r\n\t\t\t\"sAjaxDataProp\": null,\r\n\r\n\t\t\t/**\r\n\t\t\t * Note if draw should be blocked while getting data\r\n\t\t\t * @type boolean\r\n\t\t\t * @default true\r\n\t\t\t */\r\n\t\t\t\"bAjaxDataGet\": true,\r\n\r\n\t\t\t/**\r\n\t\t\t * The last jQuery XHR object that was used for server-side data gathering.\r\n\t\t\t * This can be used for working with the XHR information in one of the\r\n\t\t\t * callbacks\r\n\t\t\t * @type object\r\n\t\t\t * @default null\r\n\t\t\t */\r\n\t\t\t\"jqXHR\": null,\r\n\r\n\t\t\t/**\r\n\t\t\t * Function to get the server-side data.\r\n\t\t\t * Note that this parameter will be set by the initialisation routine. To\r\n\t\t\t * set a default use {@link DataTable.defaults}.\r\n\t\t\t * @type function\r\n\t\t\t */\r\n\t\t\t\"fnServerData\": null,\r\n\r\n\t\t\t/**\r\n\t\t\t * Functions which are called prior to sending an Ajax request so extra\r\n\t\t\t * parameters can easily be sent to the server\r\n\t\t\t * @type array\r\n\t\t\t * @default []\r\n\t\t\t */\r\n\t\t\t\"aoServerParams\": [],\r\n\r\n\t\t\t/**\r\n\t\t\t * Send the XHR HTTP method - GET or POST (could be PUT or DELETE if\r\n\t\t\t * required).\r\n\t\t\t * Note that this parameter will be set by the initialisation routine. To\r\n\t\t\t * set a default use {@link DataTable.defaults}.\r\n\t\t\t * @type string\r\n\t\t\t */\r\n\t\t\t\"sServerMethod\": null,\r\n\r\n\t\t\t/**\r\n\t\t\t * Format numbers for display.\r\n\t\t\t * Note that this parameter will be set by the initialisation routine. To\r\n\t\t\t * set a default use {@link DataTable.defaults}.\r\n\t\t\t * @type function\r\n\t\t\t */\r\n\t\t\t\"fnFormatNumber\": null,\r\n\r\n\t\t\t/**\r\n\t\t\t * List of options that can be used for the user selectable length menu.\r\n\t\t\t * Note that this parameter will be set by the initialisation routine. To\r\n\t\t\t * set a default use {@link DataTable.defaults}.\r\n\t\t\t * @type array\r\n\t\t\t * @default []\r\n\t\t\t */\r\n\t\t\t\"aLengthMenu\": null,\r\n\r\n\t\t\t/**\r\n\t\t\t * Counter for the draws that the table does. Also used as a tracker for\r\n\t\t\t * server-side processing\r\n\t\t\t * @type int\r\n\t\t\t * @default 0\r\n\t\t\t */\r\n\t\t\t\"iDraw\": 0,\r\n\r\n\t\t\t/**\r\n\t\t\t * Indicate if a redraw is being done - useful for Ajax\r\n\t\t\t * @type boolean\r\n\t\t\t * @default false\r\n\t\t\t */\r\n\t\t\t\"bDrawing\": false,\r\n\r\n\t\t\t/**\r\n\t\t\t * Draw index (iDraw) of the last error when parsing the returned data\r\n\t\t\t * @type int\r\n\t\t\t * @default -1\r\n\t\t\t */\r\n\t\t\t\"iDrawError\": -1,\r\n\r\n\t\t\t/**\r\n\t\t\t * Paging display length\r\n\t\t\t * @type int\r\n\t\t\t * @default 10\r\n\t\t\t */\r\n\t\t\t\"_iDisplayLength\": 10,\r\n\r\n\t\t\t/**\r\n\t\t\t * Paging start point - aiDisplay index\r\n\t\t\t * @type int\r\n\t\t\t * @default 0\r\n\t\t\t */\r\n\t\t\t\"_iDisplayStart\": 0,\r\n\r\n\t\t\t/**\r\n\t\t\t * Paging end point - aiDisplay index. Use fnDisplayEnd rather than\r\n\t\t\t * this property to get the end point\r\n\t\t\t * @type int\r\n\t\t\t * @default 10\r\n\t\t\t * @private\r\n\t\t\t */\r\n\t\t\t\"_iDisplayEnd\": 10,\r\n\r\n\t\t\t/**\r\n\t\t\t * Server-side processing - number of records in the result set\r\n\t\t\t * (i.e. before filtering), Use fnRecordsTotal rather than\r\n\t\t\t * this property to get the value of the number of records, regardless of\r\n\t\t\t * the server-side processing setting.\r\n\t\t\t * @type int\r\n\t\t\t * @default 0\r\n\t\t\t * @private\r\n\t\t\t */\r\n\t\t\t\"_iRecordsTotal\": 0,\r\n\r\n\t\t\t/**\r\n\t\t\t * Server-side processing - number of records in the current display set\r\n\t\t\t * (i.e. after filtering). Use fnRecordsDisplay rather than\r\n\t\t\t * this property to get the value of the number of records, regardless of\r\n\t\t\t * the server-side processing setting.\r\n\t\t\t * @type boolean\r\n\t\t\t * @default 0\r\n\t\t\t * @private\r\n\t\t\t */\r\n\t\t\t\"_iRecordsDisplay\": 0,\r\n\r\n\t\t\t/**\r\n\t\t\t * Flag to indicate if jQuery UI marking and classes should be used.\r\n\t\t\t * Note that this parameter will be set by the initialisation routine. To\r\n\t\t\t * set a default use {@link DataTable.defaults}.\r\n\t\t\t * @type boolean\r\n\t\t\t */\r\n\t\t\t\"bJUI\": null,\r\n\r\n\t\t\t/**\r\n\t\t\t * The classes to use for the table\r\n\t\t\t * @type object\r\n\t\t\t * @default {}\r\n\t\t\t */\r\n\t\t\t\"oClasses\": {},\r\n\r\n\t\t\t/**\r\n\t\t\t * Flag attached to the settings object so you can check in the draw\r\n\t\t\t * callback if filtering has been done in the draw. Deprecated in favour of\r\n\t\t\t * events.\r\n\t\t\t * @type boolean\r\n\t\t\t * @default false\r\n\t\t\t * @deprecated\r\n\t\t\t */\r\n\t\t\t\"bFiltered\": false,\r\n\r\n\t\t\t/**\r\n\t\t\t * Flag attached to the settings object so you can check in the draw\r\n\t\t\t * callback if sorting has been done in the draw. Deprecated in favour of\r\n\t\t\t * events.\r\n\t\t\t * @type boolean\r\n\t\t\t * @default false\r\n\t\t\t * @deprecated\r\n\t\t\t */\r\n\t\t\t\"bSorted\": false,\r\n\r\n\t\t\t/**\r\n\t\t\t * Indicate that if multiple rows are in the header and there is more than\r\n\t\t\t * one unique cell per column, if the top one (true) or bottom one (false)\r\n\t\t\t * should be used for sorting / title by DataTables.\r\n\t\t\t * Note that this parameter will be set by the initialisation routine. To\r\n\t\t\t * set a default use {@link DataTable.defaults}.\r\n\t\t\t * @type boolean\r\n\t\t\t */\r\n\t\t\t\"bSortCellsTop\": null,\r\n\r\n\t\t\t/**\r\n\t\t\t * Initialisation object that is used for the table\r\n\t\t\t * @type object\r\n\t\t\t * @default null\r\n\t\t\t */\r\n\t\t\t\"oInit\": null,\r\n\r\n\t\t\t/**\r\n\t\t\t * Destroy callback functions - for plug-ins to attach themselves to the\r\n\t\t\t * destroy so they can clean up markup and events.\r\n\t\t\t * @type array\r\n\t\t\t * @default []\r\n\t\t\t */\r\n\t\t\t\"aoDestroyCallback\": [],\r\n\r\n\r\n\t\t\t/**\r\n\t\t\t * Get the number of records in the current record set, before filtering\r\n\t\t\t * @type function\r\n\t\t\t */\r\n\t\t\t\"fnRecordsTotal\": function ()\r\n\t\t\t{\r\n\t\t\t\tif ( this.oFeatures.bServerSide ) {\r\n\t\t\t\t\treturn parseInt(this._iRecordsTotal, 10);\r\n\t\t\t\t} else {\r\n\t\t\t\t\treturn this.aiDisplayMaster.length;\r\n\t\t\t\t}\r\n\t\t\t},\r\n\r\n\t\t\t/**\r\n\t\t\t * Get the number of records in the current record set, after filtering\r\n\t\t\t * @type function\r\n\t\t\t */\r\n\t\t\t\"fnRecordsDisplay\": function ()\r\n\t\t\t{\r\n\t\t\t\tif ( this.oFeatures.bServerSide ) {\r\n\t\t\t\t\treturn parseInt(this._iRecordsDisplay, 10);\r\n\t\t\t\t} else {\r\n\t\t\t\t\treturn this.aiDisplay.length;\r\n\t\t\t\t}\r\n\t\t\t},\r\n\r\n\t\t\t/**\r\n\t\t\t * Set the display end point - aiDisplay index\r\n\t\t\t * @type function\r\n\t\t\t * @todo Should do away with _iDisplayEnd and calculate it on-the-fly here\r\n\t\t\t */\r\n\t\t\t\"fnDisplayEnd\": function ()\r\n\t\t\t{\r\n\t\t\t\tif ( this.oFeatures.bServerSide ) {\r\n\t\t\t\t\tif ( this.oFeatures.bPaginate === false || this._iDisplayLength == -1 ) {\r\n\t\t\t\t\t\treturn this._iDisplayStart+this.aiDisplay.length;\r\n\t\t\t\t\t} else {\r\n\t\t\t\t\t\treturn Math.min( this._iDisplayStart+this._iDisplayLength,\r\n\t\t\t\t\t\t\tthis._iRecordsDisplay );\r\n\t\t\t\t\t}\r\n\t\t\t\t} else {\r\n\t\t\t\t\treturn this._iDisplayEnd;\r\n\t\t\t\t}\r\n\t\t\t},\r\n\r\n\t\t\t/**\r\n\t\t\t * The DataTables object for this table\r\n\t\t\t * @type object\r\n\t\t\t * @default null\r\n\t\t\t */\r\n\t\t\t\"oInstance\": null,\r\n\r\n\t\t\t/**\r\n\t\t\t * Unique identifier for each instance of the DataTables object. If there\r\n\t\t\t * is an ID on the table node, then it takes that value, otherwise an\r\n\t\t\t * incrementing internal counter is used.\r\n\t\t\t * @type string\r\n\t\t\t * @default null\r\n\t\t\t */\r\n\t\t\t\"sInstance\": null,\r\n\r\n\t\t\t/**\r\n\t\t\t * tabindex attribute value that is added to DataTables control elements, allowing\r\n\t\t\t * keyboard navigation of the table and its controls.\r\n\t\t\t */\r\n\t\t\t\"iTabIndex\": 0,\r\n\r\n\t\t\t/**\r\n\t\t\t * DIV container for the footer scrolling table if scrolling\r\n\t\t\t */\r\n\t\t\t\"nScrollHead\": null,\r\n\r\n\t\t\t/**\r\n\t\t\t * DIV container for the footer scrolling table if scrolling\r\n\t\t\t */\r\n\t\t\t\"nScrollFoot\": null\r\n\t\t};\r\n\r\n\t\t/**\r\n\t\t * Extension object for DataTables that is used to provide all extension options.\r\n\t\t *\r\n\t\t * Note that the DataTable.ext object is available through\r\n\t\t * jQuery.fn.dataTable.ext where it may be accessed and manipulated. It is\r\n\t\t * also aliased to jQuery.fn.dataTableExt for historic reasons.\r\n\t\t * @namespace\r\n\t\t * @extends DataTable.models.ext\r\n\t\t */\r\n\t\tDataTable.ext = $.extend( true, {}, DataTable.models.ext );\r\n\r\n\t\t$.extend( DataTable.ext.oStdClasses, {\r\n\t\t\t\"sTable\": \"dataTable\",\r\n\r\n\t\t\t/* Two buttons buttons */\r\n\t\t\t\"sPagePrevEnabled\": \"paginate_enabled_previous\",\r\n\t\t\t\"sPagePrevDisabled\": \"paginate_disabled_previous\",\r\n\t\t\t\"sPageNextEnabled\": \"paginate_enabled_next\",\r\n\t\t\t\"sPageNextDisabled\": \"paginate_disabled_next\",\r\n\t\t\t\"sPageJUINext\": \"\",\r\n\t\t\t\"sPageJUIPrev\": \"\",\r\n\r\n\t\t\t/* Full numbers paging buttons */\r\n\t\t\t\"sPageButton\": \"paginate_button\",\r\n\t\t\t\"sPageButtonActive\": \"paginate_active\",\r\n\t\t\t\"sPageButtonStaticDisabled\": \"paginate_button paginate_button_disabled\",\r\n\t\t\t\"sPageFirst\": \"first\",\r\n\t\t\t\"sPagePrevious\": \"previous\",\r\n\t\t\t\"sPageNext\": \"next\",\r\n\t\t\t\"sPageLast\": \"last\",\r\n\r\n\t\t\t/* Striping classes */\r\n\t\t\t\"sStripeOdd\": \"odd\",\r\n\t\t\t\"sStripeEven\": \"even\",\r\n\r\n\t\t\t/* Empty row */\r\n\t\t\t\"sRowEmpty\": \"dataTables_empty\",\r\n\r\n\t\t\t/* Features */\r\n\t\t\t\"sWrapper\": \"dataTables_wrapper\",\r\n\t\t\t\"sFilter\": \"dataTables_filter\",\r\n\t\t\t\"sInfo\": \"dataTables_info\",\r\n\t\t\t\"sPaging\": \"dataTables_paginate paging_\", /* Note that the type is postfixed */\r\n\t\t\t\"sLength\": \"dataTables_length\",\r\n\t\t\t\"sProcessing\": \"dataTables_processing\",\r\n\r\n\t\t\t/* Sorting */\r\n\t\t\t\"sSortAsc\": \"sorting_asc\",\r\n\t\t\t\"sSortDesc\": \"sorting_desc\",\r\n\t\t\t\"sSortable\": \"sorting\", /* Sortable in both directions */\r\n\t\t\t\"sSortableAsc\": \"sorting_asc_disabled\",\r\n\t\t\t\"sSortableDesc\": \"sorting_desc_disabled\",\r\n\t\t\t\"sSortableNone\": \"sorting_disabled\",\r\n\t\t\t\"sSortColumn\": \"sorting_\", /* Note that an int is postfixed for the sorting order */\r\n\t\t\t\"sSortJUIAsc\": \"\",\r\n\t\t\t\"sSortJUIDesc\": \"\",\r\n\t\t\t\"sSortJUI\": \"\",\r\n\t\t\t\"sSortJUIAscAllowed\": \"\",\r\n\t\t\t\"sSortJUIDescAllowed\": \"\",\r\n\t\t\t\"sSortJUIWrapper\": \"\",\r\n\t\t\t\"sSortIcon\": \"\",\r\n\r\n\t\t\t/* Scrolling */\r\n\t\t\t\"sScrollWrapper\": \"dataTables_scroll\",\r\n\t\t\t\"sScrollHead\": \"dataTables_scrollHead\",\r\n\t\t\t\"sScrollHeadInner\": \"dataTables_scrollHeadInner\",\r\n\t\t\t\"sScrollBody\": \"dataTables_scrollBody\",\r\n\t\t\t\"sScrollFoot\": \"dataTables_scrollFoot\",\r\n\t\t\t\"sScrollFootInner\": \"dataTables_scrollFootInner\",\r\n\r\n\t\t\t/* Misc */\r\n\t\t\t\"sFooterTH\": \"\",\r\n\t\t\t\"sJUIHeader\": \"\",\r\n\t\t\t\"sJUIFooter\": \"\"\r\n\t\t} );\r\n\r\n\r\n\t\t$.extend( DataTable.ext.oJUIClasses, DataTable.ext.oStdClasses, {\r\n\t\t\t/* Two buttons buttons */\r\n\t\t\t\"sPagePrevEnabled\": \"fg-button ui-button ui-state-default ui-corner-left\",\r\n\t\t\t\"sPagePrevDisabled\": \"fg-button ui-button ui-state-default ui-corner-left ui-state-disabled\",\r\n\t\t\t\"sPageNextEnabled\": \"fg-button ui-button ui-state-default ui-corner-right\",\r\n\t\t\t\"sPageNextDisabled\": \"fg-button ui-button ui-state-default ui-corner-right ui-state-disabled\",\r\n\t\t\t\"sPageJUINext\": \"ui-icon ui-icon-circle-arrow-e\",\r\n\t\t\t\"sPageJUIPrev\": \"ui-icon ui-icon-circle-arrow-w\",\r\n\r\n\t\t\t/* Full numbers paging buttons */\r\n\t\t\t\"sPageButton\": \"fg-button ui-button ui-state-default\",\r\n\t\t\t\"sPageButtonActive\": \"fg-button ui-button ui-state-default ui-state-disabled\",\r\n\t\t\t\"sPageButtonStaticDisabled\": \"fg-button ui-button ui-state-default ui-state-disabled\",\r\n\t\t\t\"sPageFirst\": \"first ui-corner-tl ui-corner-bl\",\r\n\t\t\t\"sPageLast\": \"last ui-corner-tr ui-corner-br\",\r\n\r\n\t\t\t/* Features */\r\n\t\t\t\"sPaging\": \"dataTables_paginate fg-buttonset ui-buttonset fg-buttonset-multi \"+\r\n\t\t\t\t\"ui-buttonset-multi paging_\", /* Note that the type is postfixed */\r\n\r\n\t\t\t/* Sorting */\r\n\t\t\t\"sSortAsc\": \"ui-state-default\",\r\n\t\t\t\"sSortDesc\": \"ui-state-default\",\r\n\t\t\t\"sSortable\": \"ui-state-default\",\r\n\t\t\t\"sSortableAsc\": \"ui-state-default\",\r\n\t\t\t\"sSortableDesc\": \"ui-state-default\",\r\n\t\t\t\"sSortableNone\": \"ui-state-default\",\r\n\t\t\t\"sSortJUIAsc\": \"css_right ui-icon ui-icon-triangle-1-n\",\r\n\t\t\t\"sSortJUIDesc\": \"css_right ui-icon ui-icon-triangle-1-s\",\r\n\t\t\t\"sSortJUI\": \"css_right ui-icon ui-icon-carat-2-n-s\",\r\n\t\t\t\"sSortJUIAscAllowed\": \"css_right ui-icon ui-icon-carat-1-n\",\r\n\t\t\t\"sSortJUIDescAllowed\": \"css_right ui-icon ui-icon-carat-1-s\",\r\n\t\t\t\"sSortJUIWrapper\": \"DataTables_sort_wrapper\",\r\n\t\t\t\"sSortIcon\": \"DataTables_sort_icon\",\r\n\r\n\t\t\t/* Scrolling */\r\n\t\t\t\"sScrollHead\": \"dataTables_scrollHead ui-state-default\",\r\n\t\t\t\"sScrollFoot\": \"dataTables_scrollFoot ui-state-default\",\r\n\r\n\t\t\t/* Misc */\r\n\t\t\t\"sFooterTH\": \"ui-state-default\",\r\n\t\t\t\"sJUIHeader\": \"fg-toolbar ui-toolbar ui-widget-header ui-corner-tl ui-corner-tr ui-helper-clearfix\",\r\n\t\t\t\"sJUIFooter\": \"fg-toolbar ui-toolbar ui-widget-header ui-corner-bl ui-corner-br ui-helper-clearfix\"\r\n\t\t} );\r\n\r\n\t\t/*\r\n\t\t * Variable: oPagination\r\n\t\t * Purpose: \r\n\t\t * Scope: jQuery.fn.dataTableExt\r\n\t\t */\r\n\t\t$.extend( DataTable.ext.oPagination, {\r\n\t\t\t/*\r\n\t\t\t * Variable: two_button\r\n\t\t\t * Purpose: Standard two button (forward/back) pagination\r\n\t\t\t * Scope: jQuery.fn.dataTableExt.oPagination\r\n\t\t\t */\r\n\t\t\t\"two_button\": {\r\n\t\t\t\t/*\r\n\t\t\t\t * Function: oPagination.two_button.fnInit\r\n\t\t\t\t * Purpose: Initialise dom elements required for pagination with forward/back buttons only\r\n\t\t\t\t * Returns: -\r\n\t\t\t\t * Inputs: object:oSettings - dataTables settings object\r\n\t\t\t\t * node:nPaging - the DIV which contains this pagination control\r\n\t\t\t\t * function:fnCallbackDraw - draw function which must be called on update\r\n\t\t\t\t */\r\n\t\t\t\t\"fnInit\": function ( oSettings, nPaging, fnCallbackDraw )\r\n\t\t\t\t{\r\n\t\t\t\t\tvar oLang = oSettings.oLanguage.oPaginate;\r\n\t\t\t\t\tvar oClasses = oSettings.oClasses;\r\n\t\t\t\t\tvar fnClickHandler = function ( e ) {\r\n\t\t\t\t\t\tif ( oSettings.oApi._fnPageChange( oSettings, e.data.action ) )\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\tfnCallbackDraw( oSettings );\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t};\r\n\r\n\t\t\t\t\tvar sAppend = (!oSettings.bJUI) ?\r\n\t\t\t\t\t\t''+oLang.sPrevious+''+\r\n\t\t\t\t\t\t\t''+oLang.sNext+''\r\n\t\t\t\t\t\t:\r\n\t\t\t\t\t\t''+\r\n\t\t\t\t\t\t\t'';\r\n\t\t\t\t\t$(nPaging).append( sAppend );\r\n\r\n\t\t\t\t\tvar els = $('a', nPaging);\r\n\t\t\t\t\tvar nPrevious = els[0],\r\n\t\t\t\t\t\tnNext = els[1];\r\n\r\n\t\t\t\t\toSettings.oApi._fnBindAction( nPrevious, {action: \"previous\"}, fnClickHandler );\r\n\t\t\t\t\toSettings.oApi._fnBindAction( nNext, {action: \"next\"}, fnClickHandler );\r\n\r\n\t\t\t\t\t/* ID the first elements only */\r\n\t\t\t\t\tif ( !oSettings.aanFeatures.p )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\tnPaging.id = oSettings.sTableId+'_paginate';\r\n\t\t\t\t\t\tnPrevious.id = oSettings.sTableId+'_previous';\r\n\t\t\t\t\t\tnNext.id = oSettings.sTableId+'_next';\r\n\r\n\t\t\t\t\t\tnPrevious.setAttribute('aria-controls', oSettings.sTableId);\r\n\t\t\t\t\t\tnNext.setAttribute('aria-controls', oSettings.sTableId);\r\n\t\t\t\t\t}\r\n\t\t\t\t},\r\n\r\n\t\t\t\t/*\r\n\t\t\t\t * Function: oPagination.two_button.fnUpdate\r\n\t\t\t\t * Purpose: Update the two button pagination at the end of the draw\r\n\t\t\t\t * Returns: -\r\n\t\t\t\t * Inputs: object:oSettings - dataTables settings object\r\n\t\t\t\t * function:fnCallbackDraw - draw function to call on page change\r\n\t\t\t\t */\r\n\t\t\t\t\"fnUpdate\": function ( oSettings, fnCallbackDraw )\r\n\t\t\t\t{\r\n\t\t\t\t\tif ( !oSettings.aanFeatures.p )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\treturn;\r\n\t\t\t\t\t}\r\n\r\n\t\t\t\t\tvar oClasses = oSettings.oClasses;\r\n\t\t\t\t\tvar an = oSettings.aanFeatures.p;\r\n\t\t\t\t\tvar nNode;\r\n\r\n\t\t\t\t\t/* Loop over each instance of the pager */\r\n\t\t\t\t\tfor ( var i=0, iLen=an.length ; i'+oLang.sFirst+''+\r\n\t\t\t\t\t\t\t''+oLang.sPrevious+''+\r\n\t\t\t\t\t\t\t''+\r\n\t\t\t\t\t\t\t''+oLang.sNext+''+\r\n\t\t\t\t\t\t\t''+oLang.sLast+''\r\n\t\t\t\t\t);\r\n\t\t\t\t\tvar els = $('a', nPaging);\r\n\t\t\t\t\tvar nFirst = els[0],\r\n\t\t\t\t\t\tnPrev = els[1],\r\n\t\t\t\t\t\tnNext = els[2],\r\n\t\t\t\t\t\tnLast = els[3];\r\n\r\n\t\t\t\t\toSettings.oApi._fnBindAction( nFirst, {action: \"first\"}, fnClickHandler );\r\n\t\t\t\t\toSettings.oApi._fnBindAction( nPrev, {action: \"previous\"}, fnClickHandler );\r\n\t\t\t\t\toSettings.oApi._fnBindAction( nNext, {action: \"next\"}, fnClickHandler );\r\n\t\t\t\t\toSettings.oApi._fnBindAction( nLast, {action: \"last\"}, fnClickHandler );\r\n\r\n\t\t\t\t\t/* ID the first elements only */\r\n\t\t\t\t\tif ( !oSettings.aanFeatures.p )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\tnPaging.id = oSettings.sTableId+'_paginate';\r\n\t\t\t\t\t\tnFirst.id =oSettings.sTableId+'_first';\r\n\t\t\t\t\t\tnPrev.id =oSettings.sTableId+'_previous';\r\n\t\t\t\t\t\tnNext.id =oSettings.sTableId+'_next';\r\n\t\t\t\t\t\tnLast.id =oSettings.sTableId+'_last';\r\n\t\t\t\t\t}\r\n\t\t\t\t},\r\n\r\n\t\t\t\t/*\r\n\t\t\t\t * Function: oPagination.full_numbers.fnUpdate\r\n\t\t\t\t * Purpose: Update the list of page buttons shows\r\n\t\t\t\t * Returns: -\r\n\t\t\t\t * Inputs: object:oSettings - dataTables settings object\r\n\t\t\t\t * function:fnCallbackDraw - draw function to call on page change\r\n\t\t\t\t */\r\n\t\t\t\t\"fnUpdate\": function ( oSettings, fnCallbackDraw )\r\n\t\t\t\t{\r\n\t\t\t\t\tif ( !oSettings.aanFeatures.p )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\treturn;\r\n\t\t\t\t\t}\r\n\r\n\t\t\t\t\tvar iPageCount = DataTable.ext.oPagination.iFullNumbersShowPages;\r\n\t\t\t\t\tvar iPageCountHalf = Math.floor(iPageCount / 2);\r\n\t\t\t\t\tvar iPages = Math.ceil((oSettings.fnRecordsDisplay()) / oSettings._iDisplayLength);\r\n\t\t\t\t\tvar iCurrentPage = Math.ceil(oSettings._iDisplayStart / oSettings._iDisplayLength) + 1;\r\n\t\t\t\t\tvar sList = \"\";\r\n\t\t\t\t\tvar iStartButton, iEndButton, i, iLen;\r\n\t\t\t\t\tvar oClasses = oSettings.oClasses;\r\n\t\t\t\t\tvar anButtons, anStatic, nPaginateList, nNode;\r\n\t\t\t\t\tvar an = oSettings.aanFeatures.p;\r\n\t\t\t\t\tvar fnBind = function (j) {\r\n\t\t\t\t\t\toSettings.oApi._fnBindAction( this, {\"page\": j+iStartButton-1}, function(e) {\r\n\t\t\t\t\t\t\t/* Use the information in the element to jump to the required page */\r\n\t\t\t\t\t\t\toSettings.oApi._fnPageChange( oSettings, e.data.page );\r\n\t\t\t\t\t\t\tfnCallbackDraw( oSettings );\r\n\t\t\t\t\t\t\te.preventDefault();\r\n\t\t\t\t\t\t} );\r\n\t\t\t\t\t};\r\n\r\n\t\t\t\t\t/* Pages calculation */\r\n\t\t\t\t\tif ( oSettings._iDisplayLength === -1 )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\tiStartButton = 1;\r\n\t\t\t\t\t\tiEndButton = 1;\r\n\t\t\t\t\t\tiCurrentPage = 1;\r\n\t\t\t\t\t}\r\n\t\t\t\t\telse if (iPages < iPageCount)\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\tiStartButton = 1;\r\n\t\t\t\t\t\tiEndButton = iPages;\r\n\t\t\t\t\t}\r\n\t\t\t\t\telse if (iCurrentPage <= iPageCountHalf)\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\tiStartButton = 1;\r\n\t\t\t\t\t\tiEndButton = iPageCount;\r\n\t\t\t\t\t}\r\n\t\t\t\t\telse if (iCurrentPage >= (iPages - iPageCountHalf))\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\tiStartButton = iPages - iPageCount + 1;\r\n\t\t\t\t\t\tiEndButton = iPages;\r\n\t\t\t\t\t}\r\n\t\t\t\t\telse\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\tiStartButton = iCurrentPage - Math.ceil(iPageCount / 2) + 1;\r\n\t\t\t\t\t\tiEndButton = iStartButton + iPageCount - 1;\r\n\t\t\t\t\t}\r\n\r\n\r\n\t\t\t\t\t/* Build the dynamic list */\r\n\t\t\t\t\tfor ( i=iStartButton ; i<=iEndButton ; i++ )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\tsList += (iCurrentPage !== i) ?\r\n\t\t\t\t\t\t\t''+oSettings.fnFormatNumber(i)+'' :\r\n\t\t\t\t\t\t\t''+oSettings.fnFormatNumber(i)+'';\r\n\t\t\t\t\t}\r\n\r\n\t\t\t\t\t/* Loop over each instance of the pager */\r\n\t\t\t\t\tfor ( i=0, iLen=an.length ; i y) ? 1 : 0));\r\n\t\t\t},\r\n\r\n\t\t\t\"string-desc\": function ( x, y )\r\n\t\t\t{\r\n\t\t\t\treturn ((x < y) ? 1 : ((x > y) ? -1 : 0));\r\n\t\t\t},\r\n\r\n\r\n\t\t\t/*\r\n\t\t\t * html sorting (ignore html tags)\r\n\t\t\t */\r\n\t\t\t\"html-pre\": function ( a )\r\n\t\t\t{\r\n\t\t\t\treturn a.replace( /<.*?>/g, \"\" ).toLowerCase();\r\n\t\t\t},\r\n\r\n\t\t\t\"html-asc\": function ( x, y )\r\n\t\t\t{\r\n\t\t\t\treturn ((x < y) ? -1 : ((x > y) ? 1 : 0));\r\n\t\t\t},\r\n\r\n\t\t\t\"html-desc\": function ( x, y )\r\n\t\t\t{\r\n\t\t\t\treturn ((x < y) ? 1 : ((x > y) ? -1 : 0));\r\n\t\t\t},\r\n\r\n\r\n\t\t\t/*\r\n\t\t\t * date sorting\r\n\t\t\t */\r\n\t\t\t\"date-pre\": function ( a )\r\n\t\t\t{\r\n\t\t\t\tvar x = Date.parse( a );\r\n\r\n\t\t\t\tif ( isNaN(x) || x===\"\" )\r\n\t\t\t\t{\r\n\t\t\t\t\tx = Date.parse( \"01/01/1970 00:00:00\" );\r\n\t\t\t\t}\r\n\t\t\t\treturn x;\r\n\t\t\t},\r\n\r\n\t\t\t\"date-asc\": function ( x, y )\r\n\t\t\t{\r\n\t\t\t\treturn x - y;\r\n\t\t\t},\r\n\r\n\t\t\t\"date-desc\": function ( x, y )\r\n\t\t\t{\r\n\t\t\t\treturn y - x;\r\n\t\t\t},\r\n\r\n\r\n\t\t\t/*\r\n\t\t\t * numerical sorting\r\n\t\t\t */\r\n\t\t\t\"numeric-pre\": function ( a )\r\n\t\t\t{\r\n\t\t\t\treturn (a==\"-\" || a===\"\") ? 0 : a*1;\r\n\t\t\t},\r\n\r\n\t\t\t\"numeric-asc\": function ( x, y )\r\n\t\t\t{\r\n\t\t\t\treturn x - y;\r\n\t\t\t},\r\n\r\n\t\t\t\"numeric-desc\": function ( x, y )\r\n\t\t\t{\r\n\t\t\t\treturn y - x;\r\n\t\t\t}\r\n\t\t} );\r\n\r\n\r\n\t\t$.extend( DataTable.ext.aTypes, [\r\n\t\t\t/*\r\n\t\t\t * Function: -\r\n\t\t\t * Purpose: Check to see if a string is numeric\r\n\t\t\t * Returns: string:'numeric' or null\r\n\t\t\t * Inputs: mixed:sText - string to check\r\n\t\t\t */\r\n\t\t\tfunction ( sData )\r\n\t\t\t{\r\n\t\t\t\t/* Allow zero length strings as a number */\r\n\t\t\t\tif ( typeof sData === 'number' )\r\n\t\t\t\t{\r\n\t\t\t\t\treturn 'numeric';\r\n\t\t\t\t}\r\n\t\t\t\telse if ( typeof sData !== 'string' )\r\n\t\t\t\t{\r\n\t\t\t\t\treturn null;\r\n\t\t\t\t}\r\n\r\n\t\t\t\tvar sValidFirstChars = \"0123456789-\";\r\n\t\t\t\tvar sValidChars = \"0123456789.\";\r\n\t\t\t\tvar Char;\r\n\t\t\t\tvar bDecimal = false;\r\n\r\n\t\t\t\t/* Check for a valid first char (no period and allow negatives) */\r\n\t\t\t\tChar = sData.charAt(0);\r\n\t\t\t\tif (sValidFirstChars.indexOf(Char) == -1)\r\n\t\t\t\t{\r\n\t\t\t\t\treturn null;\r\n\t\t\t\t}\r\n\r\n\t\t\t\t/* Check all the other characters are valid */\r\n\t\t\t\tfor ( var i=1 ; i') != -1 )\r\n\t\t\t\t{\r\n\t\t\t\t\treturn 'html';\r\n\t\t\t\t}\r\n\t\t\t\treturn null;\r\n\t\t\t}\r\n\t\t] );\r\n\r\n\r\n\t\t// jQuery aliases\r\n\t\t$.fn.DataTable = DataTable;\r\n\t\t$.fn.dataTable = DataTable;\r\n\t\t$.fn.dataTableSettings = DataTable.settings;\r\n\t\t$.fn.dataTableExt = DataTable.ext;\r\n\r\n\r\n\t\t// Information about events fired by DataTables - for documentation.\r\n\t\t/**\r\n\t\t * Draw event, fired whenever the table is redrawn on the page, at the same point as\r\n\t\t * fnDrawCallback. This may be useful for binding events or performing calculations when\r\n\t\t * the table is altered at all.\r\n\t\t * @name DataTable#draw\r\n\t\t * @event\r\n\t\t * @param {event} e jQuery event object\r\n\t\t * @param {object} o DataTables settings object {@link DataTable.models.oSettings}\r\n\t\t */\r\n\r\n\t\t/**\r\n\t\t * Filter event, fired when the filtering applied to the table (using the build in global\r\n\t\t * global filter, or column filters) is altered.\r\n\t\t * @name DataTable#filter\r\n\t\t * @event\r\n\t\t * @param {event} e jQuery event object\r\n\t\t * @param {object} o DataTables settings object {@link DataTable.models.oSettings}\r\n\t\t */\r\n\r\n\t\t/**\r\n\t\t * Page change event, fired when the paging of the table is altered.\r\n\t\t * @name DataTable#page\r\n\t\t * @event\r\n\t\t * @param {event} e jQuery event object\r\n\t\t * @param {object} o DataTables settings object {@link DataTable.models.oSettings}\r\n\t\t */\r\n\r\n\t\t/**\r\n\t\t * Sort event, fired when the sorting applied to the table is altered.\r\n\t\t * @name DataTable#sort\r\n\t\t * @event\r\n\t\t * @param {event} e jQuery event object\r\n\t\t * @param {object} o DataTables settings object {@link DataTable.models.oSettings}\r\n\t\t */\r\n\r\n\t\t/**\r\n\t\t * DataTables initialisation complete event, fired when the table is fully drawn,\r\n\t\t * including Ajax data loaded, if Ajax data is required.\r\n\t\t * @name DataTable#init\r\n\t\t * @event\r\n\t\t * @param {event} e jQuery event object\r\n\t\t * @param {object} oSettings DataTables settings object\r\n\t\t * @param {object} json The JSON object request from the server - only\r\n\t\t * present if client-side Ajax sourced data is used\r\n\t\t */\r\n\r\n\t\t/**\r\n\t\t * State save event, fired when the table has changed state a new state save is required.\r\n\t\t * This method allows modification of the state saving object prior to actually doing the\r\n\t\t * save, including addition or other state properties (for plug-ins) or modification\r\n\t\t * of a DataTables core property.\r\n\t\t * @name DataTable#stateSaveParams\r\n\t\t * @event\r\n\t\t * @param {event} e jQuery event object\r\n\t\t * @param {object} oSettings DataTables settings object\r\n\t\t * @param {object} json The state information to be saved\r\n\t\t */\r\n\r\n\t\t/**\r\n\t\t * State load event, fired when the table is loading state from the stored data, but\r\n\t\t * prior to the settings object being modified by the saved state - allowing modification\r\n\t\t * of the saved state is required or loading of state for a plug-in.\r\n\t\t * @name DataTable#stateLoadParams\r\n\t\t * @event\r\n\t\t * @param {event} e jQuery event object\r\n\t\t * @param {object} oSettings DataTables settings object\r\n\t\t * @param {object} json The saved state information\r\n\t\t */\r\n\r\n\t\t/**\r\n\t\t * State loaded event, fired when state has been loaded from stored data and the settings\r\n\t\t * object has been modified by the loaded data.\r\n\t\t * @name DataTable#stateLoaded\r\n\t\t * @event\r\n\t\t * @param {event} e jQuery event object\r\n\t\t * @param {object} oSettings DataTables settings object\r\n\t\t * @param {object} json The saved state information\r\n\t\t */\r\n\r\n\t\t/**\r\n\t\t * Processing event, fired when DataTables is doing some kind of processing (be it,\r\n\t\t * sort, filter or anything else). Can be used to indicate to the end user that\r\n\t\t * there is something happening, or that something has finished.\r\n\t\t * @name DataTable#processing\r\n\t\t * @event\r\n\t\t * @param {event} e jQuery event object\r\n\t\t * @param {object} oSettings DataTables settings object\r\n\t\t * @param {boolean} bShow Flag for if DataTables is doing processing or not\r\n\t\t */\r\n\r\n\t\t/**\r\n\t\t * Ajax (XHR) event, fired whenever an Ajax request is completed from a request to\r\n\t\t * made to the server for new data (note that this trigger is called in fnServerData,\r\n\t\t * if you override fnServerData and which to use this event, you need to trigger it in\r\n\t\t * you success function).\r\n\t\t * @name DataTable#xhr\r\n\t\t * @event\r\n\t\t * @param {event} e jQuery event object\r\n\t\t * @param {object} o DataTables settings object {@link DataTable.models.oSettings}\r\n\t\t * @param {object} json JSON returned from the server\r\n\t\t */\r\n\r\n\t\t/**\r\n\t\t * Destroy event, fired when the DataTable is destroyed by calling fnDestroy or passing\r\n\t\t * the bDestroy:true parameter in the initialisation object. This can be used to remove\r\n\t\t * bound events, added DOM nodes, etc.\r\n\t\t * @name DataTable#destroy\r\n\t\t * @event\r\n\t\t * @param {event} e jQuery event object\r\n\t\t * @param {object} o DataTables settings object {@link DataTable.models.oSettings}\r\n\t\t */\r\n\t}));\r\n\r\n}(window, document));\r\n\n","(function() {\n require([\"jquery\", \"underscore\", \"commons/reachCharts\", \"commons/basicInfoCharts\", \"dataTables\", \"bootstrap-collapse\"], function($, _, reachCharts, basicInfoCharts) {\n return $(function() {\n var mediaId;\n mediaId = $('#MediaId').val();\n reachCharts.executePrint(\"#PageViewsDataUri\", \"reach-chart\");\n basicInfoCharts.executeGenderChart(\"\" + mediaId, \"#gender_chart\");\n return basicInfoCharts.executeAgeChart(\"\" + mediaId, \"#age_chart\", \"basicinfo-agechart\");\n });\n });\n\n}).call(this);\n\n//# sourceMappingURL=appPrint.js.map\n;\ndefine(\"Apps/Reach/script/appPrint\", function(){});\n\n"]}