Add anchor tags

pull/2/head
Allan Jardine 13 years ago
parent 6e01869b74
commit 6868a03f17

@ -7,6 +7,7 @@
* exception, it will only take a 1D array or an object, and not a 2D array * exception, it will only take a 1D array or an object, and not a 2D array
* (i.e. it will not add multiple rows like fnAddData). * (i.e. it will not add multiple rows like fnAddData).
* @name fnAddDataAndDisplay * @name fnAddDataAndDisplay
* @anchor fnAddDataAndDisplay
* @author <a href="http://sprymedia.co.uk">Allan Jardine</a> * @author <a href="http://sprymedia.co.uk">Allan Jardine</a>
* *
* @example * @example

@ -2,6 +2,7 @@
* Take a TR element and add it to a DataTables table. Useful for maintaining * Take a TR element and add it to a DataTables table. Useful for maintaining
* custom classes and other attributes. * custom classes and other attributes.
* @name fnAddTr * @name fnAddTr
* @anchor fnAddTr
* @author <a href="http://sprymedia.co.uk">Allan Jardine</a> * @author <a href="http://sprymedia.co.uk">Allan Jardine</a>
* *
* @example * @example

@ -5,6 +5,7 @@
* column index (i.e. all columns regardless of visibility) into a visible * column index (i.e. all columns regardless of visibility) into a visible
* column index. * column index.
* @name fnColumnIndexToVisible * @name fnColumnIndexToVisible
* @anchor fnColumnIndexToVisible
* @author <a href="http://sprymedia.co.uk">Allan Jardine</a> * @author <a href="http://sprymedia.co.uk">Allan Jardine</a>
* *
* @example * @example

@ -2,6 +2,7 @@
* Update the internal data for a TR element based on what is used in the * Update the internal data for a TR element based on what is used in the
* DOM. You will likely want to call fnDraw() after this function. * DOM. You will likely want to call fnDraw() after this function.
* @name fnColumnIndexToVisible * @name fnColumnIndexToVisible
* @anchor fnColumnIndexToVisible
* @author Lior Gerson * @author Lior Gerson
* *
* @example * @example

@ -1,6 +1,7 @@
/** /**
* Take a TR element and alter the table's paging to show the TR in question. * Take a TR element and alter the table's paging to show the TR in question.
* @name fnDisplayRow * @name fnDisplayRow
* @anchor fnDisplayRow
* @author <a href="http://sprymedia.co.uk">Allan Jardine</a> * @author <a href="http://sprymedia.co.uk">Allan Jardine</a>
* *
* @example * @example

@ -2,6 +2,7 @@
* Set the point at which DataTables will start it's display of data in the * Set the point at which DataTables will start it's display of data in the
* table. * table.
* @name fnDisplayStart * @name fnDisplayStart
* @anchor fnDisplayStart
* @author <a href="http://sprymedia.co.uk">Allan Jardine</a> * @author <a href="http://sprymedia.co.uk">Allan Jardine</a>
* *
* @example * @example

@ -4,6 +4,7 @@
* <b>Note</b> - this plug-in currently only operates correctly with * <b>Note</b> - this plug-in currently only operates correctly with
* <b>server-side processing</b>. * <b>server-side processing</b>.
* @name fnFakeRowspan * @name fnFakeRowspan
* @anchor fnFakeRowspan
* @author Fredrik Wendel * @author Fredrik Wendel
* *
* @example * @example

@ -3,6 +3,7 @@
* function call exactly matches that used by fnFilter() so regular expression * function call exactly matches that used by fnFilter() so regular expression
* and individual column sorting can be used. * and individual column sorting can be used.
* @name fnFilterAll * @name fnFilterAll
* @anchor fnFilterAll
* @author <a href="http://www.kmmtiming.se/">Kristoffer Karlström</a> * @author <a href="http://www.kmmtiming.se/">Kristoffer Karlström</a>
* *
* @example * @example

@ -2,6 +2,7 @@
* Remove all filtering that has been applied to a DataTable, be it column * Remove all filtering that has been applied to a DataTable, be it column
* based filtering or global filtering. * based filtering or global filtering.
* @name fnFilterClear * @name fnFilterClear
* @anchor fnFilterClear
* @author <a href="http://sprymedia.co.uk">Allan Jardine</a> * @author <a href="http://sprymedia.co.uk">Allan Jardine</a>
* *
* @example * @example

@ -3,6 +3,7 @@
* keypress, and replaces with it the requirement to press the enter key to * keypress, and replaces with it the requirement to press the enter key to
* perform the filter. * perform the filter.
* @name fnFilterOnReturn * @name fnFilterOnReturn
* @anchor fnFilterOnReturn
* @author <a href="http://www.mvccms.com/">Jon Ranes</a> * @author <a href="http://www.mvccms.com/">Jon Ranes</a>
* *
* @example * @example

@ -4,6 +4,7 @@
* the data indexes (from DataTables' internal data store) for any rows which * the data indexes (from DataTables' internal data store) for any rows which
* match. * match.
* @name fnFindCellRowIndexes * @name fnFindCellRowIndexes
* @anchor fnFindCellRowIndexes
* @author <a href="http://sprymedia.co.uk">Allan Jardine</a> * @author <a href="http://sprymedia.co.uk">Allan Jardine</a>
* *
* @example * @example

@ -4,6 +4,7 @@
* but in this case the returned array contains TR nodes of the matching rows, * but in this case the returned array contains TR nodes of the matching rows,
* rather than data indexes. * rather than data indexes.
* @name fnFindCellRowNodes * @name fnFindCellRowNodes
* @anchor fnFindCellRowNodes
* @author <a href="http://sprymedia.co.uk">Allan Jardine</a> * @author <a href="http://sprymedia.co.uk">Allan Jardine</a>
* *
* @example * @example

@ -7,6 +7,7 @@
* indicating if the adjacent row retrieved should be the next (true, or no * indicating if the adjacent row retrieved should be the next (true, or no
* value) or the previous (false). * value) or the previous (false).
* @name fnGetAdjacentTr * @name fnGetAdjacentTr
* @anchor fnGetAdjacentTr
* @author <a href="http://sprymedia.co.uk">Allan Jardine</a> * @author <a href="http://sprymedia.co.uk">Allan Jardine</a>
* *
* @example * @example

@ -2,6 +2,7 @@
* Return an array of table values from a particular column, with various * Return an array of table values from a particular column, with various
* filtering options. * filtering options.
* @name fnGetColumnData * @name fnGetColumnData
* @anchor fnGetColumnData
* @author <a href="http://mind2.de">Benedikt Forchhammer</a> * @author <a href="http://mind2.de">Benedikt Forchhammer</a>
* *
* @example * @example

@ -5,6 +5,7 @@
* will match a given string to the title of a column in the table and return * will match a given string to the title of a column in the table and return
* the column index, helping to overcome this problem. * the column index, helping to overcome this problem.
* @name fnGetColumnIndex * @name fnGetColumnIndex
* @anchor fnGetColumnIndex
* @author <a href="http://www.rosstechassociates.com/">Michael Ross</a> * @author <a href="http://www.rosstechassociates.com/">Michael Ross</a>
* *
* @example * @example

@ -2,6 +2,7 @@
* Get a list of all TR nodes in the table which are not currently visible * Get a list of all TR nodes in the table which are not currently visible
* (useful for building forms). * (useful for building forms).
* @name fnGetHiddenNodes * @name fnGetHiddenNodes
* @anchor fnGetHiddenNodes
* @author <a href="http://sprymedia.co.uk">Allan Jardine</a> * @author <a href="http://sprymedia.co.uk">Allan Jardine</a>
*/ */

@ -5,6 +5,7 @@
* taking into account hidden rows and columns. This function can be used to * taking into account hidden rows and columns. This function can be used to
* overcome these difficulties. * overcome these difficulties.
* @name fnColumnIndexToVisible * @name fnColumnIndexToVisible
* @anchor fnColumnIndexToVisible
* @author <a href="http://sprymedia.co.uk">Allan Jardine</a> * @author <a href="http://sprymedia.co.uk">Allan Jardine</a>
* *
* @example * @example

@ -2,6 +2,7 @@
* Get an array of TD nodes from DataTables for a given row, including any * Get an array of TD nodes from DataTables for a given row, including any
* column elements which are hidden. * column elements which are hidden.
* @name fnGetTds * @name fnGetTds
* @anchor fnGetTds
* @author <a href="http://sprymedia.co.uk">Allan Jardine</a> * @author <a href="http://sprymedia.co.uk">Allan Jardine</a>
* *
* @example * @example

@ -2,6 +2,7 @@
* Change the number of records that can be viewed on a single page in * Change the number of records that can be viewed on a single page in
* DataTables. * DataTables.
* @name fnColumnIndexToVisible * @name fnColumnIndexToVisible
* @anchor fnColumnIndexToVisible
* @author <a href="http://www.webdetails.pt/">Pedro Alves</a> * @author <a href="http://www.webdetails.pt/">Pedro Alves</a>
* *
* @example * @example

@ -5,6 +5,7 @@
* pass in an object with the key/value pair being the column you wish to * pass in an object with the key/value pair being the column you wish to
* search on, and the value you wish to search for. * search on, and the value you wish to search for.
* @name fnMultiFilter * @name fnMultiFilter
* @anchor fnMultiFilter
* @author <i>mrkevans</i> * @author <i>mrkevans</i>
* *
* @example * @example

@ -3,6 +3,7 @@
* using to display each page, including the number of records shown, start * using to display each page, including the number of records shown, start
* and end points in the data set etc. * and end points in the data set etc.
* @name fnPagingInfo * @name fnPagingInfo
* @anchor fnPagingInfo
* @author <a href="http://sprymedia.co.uk">Allan Jardine</a> * @author <a href="http://sprymedia.co.uk">Allan Jardine</a>
* *
* @example * @example

@ -4,6 +4,7 @@
* 'processing' indicator built-into DataTables. This plug-in function * 'processing' indicator built-into DataTables. This plug-in function
* exposes the internal DataTables function so it can be used for exactly this. * exposes the internal DataTables function so it can be used for exactly this.
* @name fnProcessingIndicator * @name fnProcessingIndicator
* @anchor fnProcessingIndicator
* @author Allan Chappell * @author Allan Chappell
* *
* @example * @example

@ -6,6 +6,7 @@
* <i>Note</i>:To reload data when using server-side processing, just use the * <i>Note</i>:To reload data when using server-side processing, just use the
* built-inAPI function fnDraw rather than this plug-in. * built-inAPI function fnDraw rather than this plug-in.
* @name fnReloadAjax * @name fnReloadAjax
* @anchor fnReloadAjax
* @author <a href="http://sprymedia.co.uk">Allan Jardine</a> * @author <a href="http://sprymedia.co.uk">Allan Jardine</a>
* *
* @example * @example

@ -2,6 +2,7 @@
* Enables filtration delay for keeping the browser more responsive while * Enables filtration delay for keeping the browser more responsive while
* searching for a longer keyword. * searching for a longer keyword.
* @name fnSetFilteringDelay * @name fnSetFilteringDelay
* @anchor fnSetFilteringDelay
* @author <a href="http://www.zygimantas.com/">Zygimantas Berziunas</a>, <a href="http://www.sprymedia.co.uk/">Allan Jardine</a> and <i>vex</i> * @author <a href="http://www.zygimantas.com/">Zygimantas Berziunas</a>, <a href="http://www.sprymedia.co.uk/">Allan Jardine</a> and <i>vex</i>
* *
* @example * @example

@ -6,6 +6,7 @@
* after sorting has already occurred - which is exactly what this function * after sorting has already occurred - which is exactly what this function
* does. * does.
* @name fnSortNeutral * @name fnSortNeutral
* @anchor fnSortNeutral
* @author <a href="http://sprymedia.co.uk">Allan Jardine</a> * @author <a href="http://sprymedia.co.uk">Allan Jardine</a>
* *
* @example * @example

@ -2,6 +2,7 @@
* Redraw the table (i.e. fnDraw) to take account of sorting and filtering, * Redraw the table (i.e. fnDraw) to take account of sorting and filtering,
* but retain the current pagination settings. * but retain the current pagination settings.
* @name fnStandingRedraw * @name fnStandingRedraw
* @anchor fnStandingRedraw
* @author Jonathan Hoguet * @author Jonathan Hoguet
* *
* @example * @example

@ -4,6 +4,7 @@
* value for the column positions. This function converts the visible column * value for the column positions. This function converts the visible column
* index into a data column index (i.e. all columns regardless of visibility). * index into a data column index (i.e. all columns regardless of visibility).
* @name fnVisibleToColumnIndex * @name fnVisibleToColumnIndex
* @anchor fnVisibleToColumnIndex
* @author <a href="http://sprymedia.co.uk">Allan Jardine</a> * @author <a href="http://sprymedia.co.uk">Allan Jardine</a>
* *
* @example * @example

@ -3,6 +3,7 @@
* to change the id's on the inputs and the columns in which the start and * to change the id's on the inputs and the columns in which the start and
* end date exist. * end date exist.
* @name Range filtering (dates) * @name Range filtering (dates)
* @anchor range_dates
* @author <i>guillimon</i> * @author <i>guillimon</i>
* *
* @example * @example

@ -3,6 +3,7 @@
* numbers. Note that you will likely need to change the id's on the inputs * numbers. Note that you will likely need to change the id's on the inputs
* and the column in which the numeric value is given. * and the column in which the numeric value is given.
* @name Range filtering (numbers) * @name Range filtering (numbers)
* @anchor range_numbers
* @author <a href="http://sprymedia.co.uk">Allan Jardine</a> * @author <a href="http://sprymedia.co.uk">Allan Jardine</a>
* *
* @example * @example

@ -7,6 +7,7 @@
* default because it is slightly slower than the built-in method, which is * default because it is slightly slower than the built-in method, which is
* good enough for by far the majority of use cases. * good enough for by far the majority of use cases.
* @name html * @name html
* @anchor html_column
* @author <i>guillimon</i> * @author <i>guillimon</i>
* *
* @example * @example

@ -1,6 +1,7 @@
/** /**
* Arabic translation * Arabic translation
* @name Arabic * @name Arabic
* @anchor Arabic
* @author Ossama Khayat * @author Ossama Khayat
*/ */

@ -1,6 +1,7 @@
/** /**
* Bangla translation * Bangla translation
* @name Bangla * @name Bangla
* @anchor Bangla
* @author <a href="http://khaledcse06.wordpress.com">Md. Khaled Ben Islam</a> * @author <a href="http://khaledcse06.wordpress.com">Md. Khaled Ben Islam</a>
*/ */

@ -1,6 +1,7 @@
/** /**
* Bulgarian translation * Bulgarian translation
* @name Bulgarian * @name Bulgarian
* @anchor Bulgarian
* @author Rostislav Stoyanov * @author Rostislav Stoyanov
*/ */

@ -1,6 +1,7 @@
/** /**
* Catalan translation * Catalan translation
* @name Catalan * @name Catalan
* @anchor Catalan
* @author Sergi * @author Sergi
*/ */

@ -1,6 +1,7 @@
/** /**
* Chinese (traditional) translation * Chinese (traditional) translation
* @name Chinese (traditional) * @name Chinese (traditional)
* @anchor Chinese (traditional)
* @author <a href="https://gimmerank.com/">GimmeRank Affiliate</a> * @author <a href="https://gimmerank.com/">GimmeRank Affiliate</a>
*/ */

@ -1,6 +1,7 @@
/** /**
* Chinese translation * Chinese translation
* @name Chinese * @name Chinese
* @anchor Chinese
* @author <a href="http://docs.jquery.com/UI">Chi Cheng</a> * @author <a href="http://docs.jquery.com/UI">Chi Cheng</a>
*/ */

@ -1,6 +1,7 @@
/** /**
* Croatian translation * Croatian translation
* @name Croatian * @name Croatian
* @anchor Croatian
* @author Predrag Mušić * @author Predrag Mušić
*/ */

@ -1,6 +1,7 @@
/** /**
* Czech translation * Czech translation
* @name Czech * @name Czech
* @anchor Czech
* @author <a href="http://blog.magerio.cz/">Magerio</a> * @author <a href="http://blog.magerio.cz/">Magerio</a>
*/ */

@ -1,6 +1,7 @@
/** /**
* Danish translation * Danish translation
* @name Danish * @name Danish
* @anchor Danish
* @author <a href="http://www.kor.dk/">Werner Knudsen</a> * @author <a href="http://www.kor.dk/">Werner Knudsen</a>
*/ */

@ -1,6 +1,7 @@
/** /**
* Dutch translation * Dutch translation
* @name Dutch * @name Dutch
* @anchor Dutch
* @author <a href="http://www.blikgooien.nl/">Erwin Kerk</a> and <i>ashwin</i> * @author <a href="http://www.blikgooien.nl/">Erwin Kerk</a> and <i>ashwin</i>
*/ */

@ -1,6 +1,7 @@
/** /**
* English - this is the default DataTables ships with * English - this is the default DataTables ships with
* @name English * @name English
* @anchor English
* @author <a href="http://www.sprymedia.co.uk/">Allan Jardine</a> * @author <a href="http://www.sprymedia.co.uk/">Allan Jardine</a>
*/ */

@ -1,6 +1,7 @@
/** /**
* Estonian translation * Estonian translation
* @name Estonian * @name Estonian
* @anchor Estonian
* @author <a href="http://www.arts9.com/">Janek Todoruk</a> * @author <a href="http://www.arts9.com/">Janek Todoruk</a>
*/ */

@ -1,6 +1,7 @@
/** /**
* Filipino translation * Filipino translation
* @name Filipino * @name Filipino
* @anchor Filipino
* @author <a href="http://citi360.com/">Citi360</a> * @author <a href="http://citi360.com/">Citi360</a>
*/ */

@ -1,6 +1,7 @@
/** /**
* Finnish translation * Finnish translation
* @name Finnish * @name Finnish
* @anchor Finnish
* @author Seppo Äyräväinen * @author Seppo Äyräväinen
*/ */

@ -1,6 +1,7 @@
/** /**
* French translation * French translation
* @name French * @name French
* @anchor French
* @author Guillaume LO RE * @author Guillaume LO RE
*/ */

@ -1,6 +1,7 @@
/** /**
* Georgian translation * Georgian translation
* @name Georgian * @name Georgian
* @anchor Georgian
* @author Mikheil Nadareishvili * @author Mikheil Nadareishvili
*/ */

@ -1,6 +1,7 @@
/** /**
* German translation * German translation
* @name German * @name German
* @anchor German
* @author Joerg Holz * @author Joerg Holz
*/ */

@ -1,6 +1,7 @@
/** /**
* Greek translation * Greek translation
* @name Greek * @name Greek
* @anchor Greek
* @author Abraam Ziogas * @author Abraam Ziogas
*/ */

@ -1,6 +1,7 @@
/** /**
* Hebrew translation * Hebrew translation
* @name Hebrew * @name Hebrew
* @anchor Hebrew
* @author <a href="http://ww3.co.il/">Neil Osman (WW3)</a> * @author <a href="http://ww3.co.il/">Neil Osman (WW3)</a>
*/ */

@ -1,6 +1,7 @@
/** /**
* Hindi translation * Hindi translation
* @name Hindi * @name Hindi
* @anchor Hindi
* @author <a href="http://outshinesolutions.com">Outshine Solutions</a> * @author <a href="http://outshinesolutions.com">Outshine Solutions</a>
*/ */

@ -1,6 +1,7 @@
/** /**
* Hungarian translation * Hungarian translation
* @name Hungarian * @name Hungarian
* @anchor Hungarian
* @author <a href="http://www.maschek.hu">Adam Maschek</a> * @author <a href="http://www.maschek.hu">Adam Maschek</a>
*/ */

@ -1,6 +1,7 @@
/** /**
* Indonesian translation * Indonesian translation
* @name Indonesian * @name Indonesian
* @anchor Indonesian
* @author Landung Wahana * @author Landung Wahana
*/ */

@ -1,6 +1,7 @@
/** /**
* Indonesian translation * Indonesian translation
* @name Indonesian * @name Indonesian
* @anchor Indonesian
* @author Cipto Hadi * @author Cipto Hadi
*/ */

@ -1,6 +1,7 @@
/** /**
* Irish translation * Irish translation
* @name Irish * @name Irish
* @anchor Irish
* @author <a href="http://letsbefamous.com">Lets Be Famous Journal</a> * @author <a href="http://letsbefamous.com">Lets Be Famous Journal</a>
*/ */

@ -1,6 +1,7 @@
/** /**
* Italian translation * Italian translation
* @name Italian * @name Italian
* @anchor Italian
* @author Nicola Zecchin * @author Nicola Zecchin
*/ */

@ -1,6 +1,7 @@
/** /**
* Latvian translation * Latvian translation
* @name Latvian * @name Latvian
* @anchor Latvian
* @author Oskars Podans * @author Oskars Podans
*/ */

@ -1,6 +1,7 @@
/** /**
* Lithuanian translation * Lithuanian translation
* @name Lithuanian * @name Lithuanian
* @anchor Lithuanian
* @author <a href="http://www.kurdingopinigai.lt">Kęstutis Morkūnas</a> * @author <a href="http://www.kurdingopinigai.lt">Kęstutis Morkūnas</a>
*/ */

@ -1,6 +1,7 @@
/** /**
* Macedonian translation * Macedonian translation
* @name Macedonian * @name Macedonian
* @anchor Macedonian
* @author Bojan Petkovski * @author Bojan Petkovski
*/ */

@ -1,6 +1,7 @@
/** /**
* Norwegian translation * Norwegian translation
* @name Norwegian * @name Norwegian
* @anchor Norwegian
* @author Petter Ekrann * @author Petter Ekrann
*/ */

@ -1,6 +1,7 @@
/** /**
* Persian translation * Persian translation
* @name Persian * @name Persian
* @anchor Persian
* @author <a href="http://www.chavoshi.com/">Ehsan Chavoshi</a> * @author <a href="http://www.chavoshi.com/">Ehsan Chavoshi</a>
*/ */

@ -1,6 +1,7 @@
/** /**
* Polish translation * Polish translation
* @name Polish * @name Polish
* @anchor Polish
* @author Tomasz Kowalski * @author Tomasz Kowalski
*/ */

@ -1,6 +1,7 @@
/** /**
* Portuguese Brasil translation * Portuguese Brasil translation
* @name Portuguese Brasil * @name Portuguese Brasil
* @anchor Portuguese Brasil
* @author Roberto * @author Roberto
*/ */

@ -1,6 +1,7 @@
/** /**
* Portuguese translation * Portuguese translation
* @name Portuguese * @name Portuguese
* @anchor Portuguese
* @author Nuno Felicio * @author Nuno Felicio
*/ */

@ -1,6 +1,7 @@
/** /**
* Romanian translation * Romanian translation
* @name Romanian * @name Romanian
* @anchor Romanian
* @author <a href="http://www.jurubita.ro/">Alexandru Jurubita</a> * @author <a href="http://www.jurubita.ro/">Alexandru Jurubita</a>
*/ */

@ -1,6 +1,7 @@
/** /**
* Russian translation * Russian translation
* @name Russian * @name Russian
* @anchor Russian
* @author Tjoma * @author Tjoma
*/ */

@ -1,6 +1,7 @@
/** /**
* Serbian translation (Latin alphabet) * Serbian translation (Latin alphabet)
* @name Serbian (Latin) * @name Serbian (Latin)
* @anchor Serbian (Latin)
* @author <a href="http://mnovakovic.byteout.com">Marko Novakovic</a> * @author <a href="http://mnovakovic.byteout.com">Marko Novakovic</a>
*/ */

@ -1,6 +1,7 @@
/** /**
* Slovak translation * Slovak translation
* @name Slovak * @name Slovak
* @anchor Slovak
* @author <a href="http://miskerik.com/">Maroš Miškerik</a> * @author <a href="http://miskerik.com/">Maroš Miškerik</a>
*/ */

@ -1,6 +1,7 @@
/** /**
* Slovenian translation * Slovenian translation
* @name Slovenian * @name Slovenian
* @anchor Slovenian
* @author Marko Kroflic, and Blaž Brenčič * @author Marko Kroflic, and Blaž Brenčič
*/ */

@ -1,6 +1,7 @@
/** /**
* Spanish translation * Spanish translation
* @name Spanish * @name Spanish
* @anchor Spanish
* @author <i>Unknown...</i> * @author <i>Unknown...</i>
*/ */

@ -1,6 +1,7 @@
/** /**
* Swedish translation * Swedish translation
* @name Swedish * @name Swedish
* @anchor Swedish
* @author <a href="http://www.kmmtiming.se/">Kristoffer Karlström</a> * @author <a href="http://www.kmmtiming.se/">Kristoffer Karlström</a>
*/ */

@ -1,6 +1,7 @@
/** /**
* Thai translation * Thai translation
* @name Thai * @name Thai
* @anchor Thai
* @author Thanva Thonglor * @author Thanva Thonglor
*/ */

@ -1,6 +1,7 @@
/** /**
* Turkish translation * Turkish translation
* @name Turkish * @name Turkish
* @anchor Turkish
* @author Umit Gorkem * @author Umit Gorkem
*/ */

@ -1,6 +1,7 @@
/** /**
* Ukranian translation * Ukranian translation
* @name Ukranian * @name Ukranian
* @anchor Ukranian
* @author <i>antyrat</i> * @author <i>antyrat</i>
*/ */

@ -1,6 +1,7 @@
/** /**
* Urdu translation * Urdu translation
* @name Urdu * @name Urdu
* @anchor Urdu
* @author Zafar Subzwari * @author Zafar Subzwari
*/ */

@ -1,6 +1,7 @@
/** /**
* Vietnamese translation * Vietnamese translation
* @name Vietnamese * @name Vietnamese
* @anchor Vietnamese
* @author Trinh Phuoc Thai * @author Trinh Phuoc Thai
*/ */

@ -3,6 +3,7 @@
* pagination styling with DataTables. Note that this plug-in uses the * pagination styling with DataTables. Note that this plug-in uses the
* fnPagingInfo API plug-in method to obtain paging information. * fnPagingInfo API plug-in method to obtain paging information.
* @name Twitter Bootstrap * @name Twitter Bootstrap
* @anchor bootstrap
* @author <a href="http://sprymedia.co.uk">Allan Jardine</a> * @author <a href="http://sprymedia.co.uk">Allan Jardine</a>
* *
* @example * @example

@ -2,6 +2,7 @@
* This pagination plug-in provides pagination controls for DataTables which * This pagination plug-in provides pagination controls for DataTables which
* match the style and interaction of the ExtJS library's grid component. * match the style and interaction of the ExtJS library's grid component.
* @name ExtJS style * @name ExtJS style
* @anchor extjs
* @author <a href="http://zachariahtimothy.wordpress.com/">Zach Curtis</a> * @author <a href="http://zachariahtimothy.wordpress.com/">Zach Curtis</a>
* *
* @example * @example

@ -3,6 +3,7 @@
* or lots of buttons (forward, back, first, last and individual pages). This * or lots of buttons (forward, back, first, last and individual pages). This
* plug-in meets the two in the middle providing navigation controls for forward, back, first and last. * plug-in meets the two in the middle providing navigation controls for forward, back, first and last.
* @name Four button navigation * @name Four button navigation
* @anchor four_button
* @author <a href="http://sprymedia.co.uk">Allan Jardine</a> * @author <a href="http://sprymedia.co.uk">Allan Jardine</a>
* *
* @example * @example

@ -5,6 +5,7 @@
* for), and four standard navigation buttons are also presented to the end * for), and four standard navigation buttons are also presented to the end
* user. * user.
* @name Navigation with text input * @name Navigation with text input
* @anchor text_input
* @author <a href="http://sprymedia.co.uk">Allan Jardine</a> * @author <a href="http://sprymedia.co.uk">Allan Jardine</a>
* *
* @example * @example

@ -4,6 +4,7 @@
* multiple times for each event, each draw progressing by one row until the * multiple times for each event, each draw progressing by one row until the
* required point in the table is reached. * required point in the table is reached.
* @name Scrolling navigation * @name Scrolling navigation
* @anchor scrolling
* @author <a href="http://sprymedia.co.uk">Allan Jardine</a> * @author <a href="http://sprymedia.co.uk">Allan Jardine</a>
* *
* @example * @example

@ -2,6 +2,7 @@
* This pagination plug-in provides a select menu with the list of the page * This pagination plug-in provides a select menu with the list of the page
* numbers that are available for viewing. * numbers that are available for viewing.
* @name Select list * @name Select list
* @anchor listbox
* @author <i>jneilliii</i> * @author <i>jneilliii</i>
* *
* @example * @example

@ -3,6 +3,7 @@
* you have a column of images (ticks and crosses for example) and you want to * you have a column of images (ticks and crosses for example) and you want to
* control the sorting using the alt tag. * control the sorting using the alt tag.
* @name Alt string * @name Alt string
* @anchor alt
* @author <i>Jumpy</i> * @author <i>Jumpy</i>
*/ */

@ -4,6 +4,7 @@
* to include in your sorting order. This plug-in will strip the word "the" * to include in your sorting order. This plug-in will strip the word "the"
* from the start of a string and sort on what is left. * from the start of a string and sort on what is left.
* @name Anti-"the" * @name Anti-"the"
* @anchor anti_the
* @author <a href="http://sprymedia.co.uk">Allan Jardine</a> * @author <a href="http://sprymedia.co.uk">Allan Jardine</a>
*/ */

@ -3,6 +3,7 @@
* detected automatically with the currency type detection plug-in or set * detected automatically with the currency type detection plug-in or set
* manually) while taking account of the currency symbol ($ or £ by default). * manually) while taking account of the currency symbol ($ or £ by default).
* @name Currency * @name Currency
* @anchor currency
* @author <a href="http://sprymedia.co.uk">Allan Jardine</a> * @author <a href="http://sprymedia.co.uk">Allan Jardine</a>
*/ */

@ -3,6 +3,7 @@
* additional flexibility with support for spaces between the values and * additional flexibility with support for spaces between the values and
* either . or / notation for the separators. * either . or / notation for the separators.
* @name Date (dd . mm[ . YYYY]) * @name Date (dd . mm[ . YYYY])
* @anchor date_eu
* @author <a href="http://galjot.si/">Robert Sedovšek</a> * @author <a href="http://galjot.si/">Robert Sedovšek</a>
*/ */

@ -4,6 +4,7 @@
* also be quickly adapted for other formatting as required. Furthermore, this * also be quickly adapted for other formatting as required. Furthermore, this
* date sorting plug-in allows for empty values in the column. * date sorting plug-in allows for empty values in the column.
* @name Date (dd/mm/YYY hh:ii:ss) * @name Date (dd/mm/YYY hh:ii:ss)
* @anchor date_euro
* @author <a href="http://coolforest.net/">Ronan Guilloux</a> * @author <a href="http://coolforest.net/">Ronan Guilloux</a>
*/ */

@ -5,7 +5,8 @@
* dd/mm/yy. * dd/mm/yy.
* *
* An automatic type detection plug-in is available for this sorting plug-in. * An automatic type detection plug-in is available for this sorting plug-in.
* @name Date (dd/mm/YY) * @name Date (dd/mm/YY)
* @anchor date_uk
* @author Andy McMaster * @author Andy McMaster
*/ */

@ -4,6 +4,7 @@
* by converting the works to a numerical value and then sorting based on that * by converting the works to a numerical value and then sorting based on that
* value. * value.
* @name enum * @name enum
* @anchor enum
* @author <a href="http://sprymedia.co.uk">Allan Jardine</a> * @author <a href="http://sprymedia.co.uk">Allan Jardine</a>
*/ */

@ -5,6 +5,7 @@
* indicates of size into account. A counterpart type detection plug-in * indicates of size into account. A counterpart type detection plug-in
* is also available. * is also available.
* @name File size * @name File size
* @anchor file_size
* @author <i>anjibman</i> * @author <i>anjibman</i>
*/ */

@ -4,6 +4,7 @@
* reporting information containing IP address. Also has a matching type * reporting information containing IP address. Also has a matching type
* detection plug-in for automatic type detection. * detection plug-in for automatic type detection.
* @name IP addresses * @name IP addresses
* @anchor ip_address
* @author Brad Wasson * @author Brad Wasson
*/ */

@ -4,6 +4,7 @@
* to include in your sorting order. This plug-in will strip the word "the" * to include in your sorting order. This plug-in will strip the word "the"
* from the start of a string and sort on what is left. * from the start of a string and sort on what is left.
* @name Month / year sorting * @name Month / year sorting
* @anchor monthYear
* @author Michael Motek * @author Michael Motek
*/ */

@ -4,6 +4,7 @@
* to include in your sorting order. This plug-in will strip the word "the" * to include in your sorting order. This plug-in will strip the word "the"
* from the start of a string and sort on what is left. * from the start of a string and sort on what is left.
* @name Natural sorting * @name Natural sorting
* @anchor natrual
* @author <a href="http://www.overset.com/2008/09/01/javascript-natural-sort-algorithm/">Jim Palmer</a> * @author <a href="http://www.overset.com/2008/09/01/javascript-natural-sort-algorithm/">Jim Palmer</a>
*/ */

@ -5,6 +5,7 @@
* plug-in has an equivalent type detection plug-in which can make integration * plug-in has an equivalent type detection plug-in which can make integration
* easier. * easier.
* @name Numbers with HTML * @name Numbers with HTML
* @anchor numbers_html
* @author <a href="http://sprymedia.co.uk">Allan Jardine</a> * @author <a href="http://sprymedia.co.uk">Allan Jardine</a>
*/ */

@ -4,6 +4,7 @@
* sorting by adding the type 'numeric-comma' to DataTables. A type detection * sorting by adding the type 'numeric-comma' to DataTables. A type detection
* plug-in for this sorting method is provided below. * plug-in for this sorting method is provided below.
* @name Commas for decimal place * @name Commas for decimal place
* @anchor numeric_comma
* @author <a href="http://sprymedia.co.uk">Allan Jardine</a> * @author <a href="http://sprymedia.co.uk">Allan Jardine</a>
*/ */

@ -1,6 +1,7 @@
/** /**
* Sort numeric data which has a percent sign with it. * Sort numeric data which has a percent sign with it.
* @name Percentage * @name Percentage
* @anchor percentage
* @author <a href="http://jonathanromley.org/">Jonathan Romley</a> * @author <a href="http://jonathanromley.org/">Jonathan Romley</a>
*/ */

@ -3,6 +3,7 @@
* characters - for which special consideration must be made. This plug-in * characters - for which special consideration must be made. This plug-in
* performs correct sorting on Persian characters. * performs correct sorting on Persian characters.
* @name Persian * @name Persian
* @anchor Persian
* @author <a href="http://www.afshinblog.com/">Afshin Mehrabani</a> * @author <a href="http://www.afshinblog.com/">Afshin Mehrabani</a>
*/ */

@ -2,6 +2,7 @@
* This plug-in will treat numbers which are in scientific notation (for * This plug-in will treat numbers which are in scientific notation (for
* example 1E-10, 1.2E6 etc) and sort them numerically. * example 1E-10, 1.2E6 etc) and sort them numerically.
* @name Scientific notation sorting * @name Scientific notation sorting
* @anchor scientific
* @author <a href="http://datatables.net/forums/profile/21757/nickschurch">Nick Schurch</a> * @author <a href="http://datatables.net/forums/profile/21757/nickschurch">Nick Schurch</a>
*/ */

@ -3,6 +3,7 @@
* numbers, it does not accept positively signed numbers. This plug-in will * numbers, it does not accept positively signed numbers. This plug-in will
* sort just such data numerically. * sort just such data numerically.
* @name Fully signed numbers sorting * @name Fully signed numbers sorting
* @anchor Signed_Numbers
* @author <a href="http://sprymedia.co.uk">Allan Jardine</a> * @author <a href="http://sprymedia.co.uk">Allan Jardine</a>
*/ */

@ -7,6 +7,7 @@
* 'title' attribute of en empty span element (or anything else) to sort * 'title' attribute of en empty span element (or anything else) to sort
* numerically (for example <span title="1000000"><span>1'000'000). * numerically (for example <span title="1000000"><span>1'000'000).
* @name Hidden title numeric sorting * @name Hidden title numeric sorting
* @anchor hidden_title
* @author <a href="http://sprymedia.co.uk">Allan Jardine</a> * @author <a href="http://sprymedia.co.uk">Allan Jardine</a>
*/ */

@ -4,6 +4,7 @@
* element. The only difference is that it is string based sorting rather than * element. The only difference is that it is string based sorting rather than
* numeric. * numeric.
* @name Hidden title string sorting * @name Hidden title string sorting
* @anchor hidden_title_string
* @author <a href="http://sprymedia.co.uk">Allan Jardine</a> * @author <a href="http://sprymedia.co.uk">Allan Jardine</a>
*/ */

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save