<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:content="http://purl.org/rss/1.0/modules/content/"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
        <title>Web-site — DataTables forums</title>
        <link>https://next.datatables.net/forums/</link>
        <pubDate>Wed, 22 Jul 2026 01:35:33 +0000</pubDate>
        <language>en</language>
            <description>Web-site — DataTables forums</description>
    <language>en</language>
    <atom:link href="https://next.datatables.net/forums/categories/web-site/feed.rss" rel="self" type="application/rss+xml"/>
    <item>
        <title>Child Detail Rows examples and ColumnControl</title>
        <link>https://next.datatables.net/forums/discussion/81152/child-detail-rows-examples-and-columncontrol</link>
        <pubDate>Tue, 15 Jul 2025 20:02:49 +0000</pubDate>
        <category>Web-site</category>
        <dc:creator>kthorngren</dc:creator>
        <guid isPermaLink="false">81152@/forums/discussions</guid>
        <description><![CDATA[<p>The two Child Rows examples:<br />
<a rel="nofollow" href="https://datatables.net/examples/api/row_details.html">https://datatables.net/examples/api/row_details.html</a><br />
<a rel="nofollow" href="https://datatables.net/examples/api/row_details_stateSave.html">https://datatables.net/examples/api/row_details_stateSave.html</a></p>

<p>Use <a rel="nofollow" href="//datatables.net/reference/option/columns.className"><code title="DataTables initialisation option">columns.className</code></a> to assign the <code>dt-control</code> classname to the column's cells, including the header.  When using ColumnControl to create new headers the selector used in the examples will cause errors like this:</p>

<blockquote>
  <p>Uncaught TypeError: Cannot read properties of undefined (reading 'name')</p>
</blockquote>

<p>when clicking in the header <code title="HTML tag">td</code>'s created by ColumnControl.  Here is a test case:<br />
<a rel="nofollow" href="https://live.datatables.net/dufaheqa/1/edit">https://live.datatables.net/dufaheqa/1/edit</a></p>

<p>Updating the examples with a selector like <code>table.on('click', 'tbody td.dt-control', function (e) {</code> will allow the developers to directly copy the examples and use ColumnControl`.</p>

<p>Kevin</p>
]]>
        </description>
    </item>
    <item>
        <title>Error in state() example</title>
        <link>https://next.datatables.net/forums/discussion/80990/error-in-state-example</link>
        <pubDate>Tue, 03 Jun 2025 13:49:16 +0000</pubDate>
        <category>Web-site</category>
        <dc:creator>kthorngren</dc:creator>
        <guid isPermaLink="false">80990@/forums/discussions</guid>
        <description><![CDATA[<p>The second example in the <a rel="nofollow" href="//datatables.net/reference/api/state()"><code title="DataTables API method">state()</code></a> docs has this code:</p>

<pre><code>var table = new DataTable('#myTable');
var state = table.state();
 
state.start = 10;
 
table.state(start).draw(false);
</code></pre>

<p>Line 6 should have <code>state(state)</code> instead.</p>

<p>Kevin</p>
]]>
        </description>
    </item>
    <item>
        <title>Flexible table width example</title>
        <link>https://next.datatables.net/forums/discussion/80589/flexible-table-width-example</link>
        <pubDate>Fri, 14 Feb 2025 00:33:08 +0000</pubDate>
        <category>Web-site</category>
        <dc:creator>kthorngren</dc:creator>
        <guid isPermaLink="false">80589@/forums/discussions</guid>
        <description><![CDATA[<p>I believe Datatables now adds <code>style="width:100%"</code> to the <code title="HTML tag">table</code> tag if it doesn't exist.  I wonder if <code>style="width:100%"</code> should be removed from the HTML tab as I don't believe it is needed now.</p>

<p>Kevin</p>
]]>
        </description>
    </item>
    <item>
        <title>ready() API documentation suggestion</title>
        <link>https://next.datatables.net/forums/discussion/80483/ready-api-documentation-suggestion</link>
        <pubDate>Wed, 22 Jan 2025 21:31:03 +0000</pubDate>
        <category>Web-site</category>
        <dc:creator>kthorngren</dc:creator>
        <guid isPermaLink="false">80483@/forums/discussions</guid>
        <description><![CDATA[<p>I was providing an example of using <a rel="nofollow" href="//datatables.net/reference/api/ready()"><code title="DataTables API method">ready()</code></a> with multiple tables.  The docs have this comment:</p>

<blockquote>
  <p>Scope is set to an API instance for the DataTable in question.</p>
</blockquote>

<p>It took me a bit to figure out what this meant and how to get the API instance - I'm a bit slow <img src="https://next.datatables.net/forums/resources/emoji/smile.png" title=":smile:" alt=":smile:" height="20" />   The suggestion is to provide an example using multiple tables.  For example:</p>

<pre><code>let tables = new DataTable('.display');
 
tables.ready(function () {
    // Get the API instance
    let table = $( this ).DataTable();

    // Actions to take when the table is ready
    // ...
});
</code></pre>

<p>Kevin</p>
]]>
        </description>
    </item>
    <item>
        <title>No formatting of Feature Markdown link</title>
        <link>https://next.datatables.net/forums/discussion/80384/no-formatting-of-feature-markdown-link</link>
        <pubDate>Tue, 24 Dec 2024 14:01:26 +0000</pubDate>
        <category>Web-site</category>
        <dc:creator>kthorngren</dc:creator>
        <guid isPermaLink="false">80384@/forums/discussions</guid>
        <description><![CDATA[<p>Using <code>-feature</code> creates a link to the feature but the rendered link doesn't have the cool formatting that other Datatables Markdown options have.  It's also not in the <a rel="nofollow" href="https://datatables.net/manual/tech-notes/8">Markdown docs</a>.</p>

<p>I also noticed the <code>-option</code> is not in the docs but <code>-init</code> is.  I've always used <code>-option</code> <img src="https://next.datatables.net/forums/resources/emoji/smile.png" title=":smile:" alt=":smile:" height="20" /></p>

<p>Kevin</p>
]]>
        </description>
    </item>
    <item>
        <title>Download Builder inkludes no Packages</title>
        <link>https://next.datatables.net/forums/discussion/80046/download-builder-inkludes-no-packages</link>
        <pubDate>Mon, 14 Oct 2024 08:12:26 +0000</pubDate>
        <category>Web-site</category>
        <dc:creator>markus-reichel@gmx.de</dc:creator>
        <guid isPermaLink="false">80046@/forums/discussions</guid>
        <description><![CDATA[<p>Hello the Download Builder on: <a rel="nofollow" href="https://datatables.net/download/">https://datatables.net/download/</a> (Download Option)<br />
icludes not the Packages only 4 files:<br />
* datatables.css<br />
* datatables.js<br />
* datatables.min.css<br />
* datatables.min.js</p>

<p>Is this a general Problem?</p>
]]>
        </description>
    </item>
    <item>
        <title>DataTables forum Markdown documentation</title>
        <link>https://next.datatables.net/forums/discussion/79436/datatables-forum-markdown-documentation</link>
        <pubDate>Fri, 19 Jul 2024 10:25:10 +0000</pubDate>
        <category>Web-site</category>
        <dc:creator>Loren Maxwell</dc:creator>
        <guid isPermaLink="false">79436@/forums/discussions</guid>
        <description><![CDATA[<p>I'm looking at <a href="https://next.datatables.net/forums/profile/allan" rel="nofollow">@allan</a>'s response to my question in this post:<br />
<a rel="nofollow" href="https://datatables.net/forums/discussion/79423/datatables-as-an-input-with-serverside">https://datatables.net/forums/discussion/79423/datatables-as-an-input-with-serverside</a></p>

<p>I'm noticing when the datatable as a field is mentioned in his it's tagged somehow with Markdown syntax similar to how <a rel="nofollow" href="//datatables.net/reference/api/api"><code title="DataTables API method">api</code></a> and <a rel="nofollow" href="//datatables.net/reference/option/init"><code title="DataTables initialisation option">init</code></a> are tagged, but I don't see the syntax listed in the website Markdown documentation:<br />
<a rel="nofollow" href="https://datatables.net/manual/tech-notes/8">https://datatables.net/manual/tech-notes/8</a></p>

<p>I tried <code>-field field</code> but it doesn't seem to be the correct one.</p>
]]>
        </description>
    </item>
    <item>
        <title>Search results</title>
        <link>https://next.datatables.net/forums/discussion/79088/search-results</link>
        <pubDate>Wed, 22 May 2024 11:57:38 +0000</pubDate>
        <category>Web-site</category>
        <dc:creator>tangerine</dc:creator>
        <guid isPermaLink="false">79088@/forums/discussions</guid>
        <description><![CDATA[<p>Following a forum search, the "Found: n matches. Go &gt;" link throws a 404.</p>
]]>
        </description>
    </item>
    <item>
        <title>Button Examples gone?</title>
        <link>https://next.datatables.net/forums/discussion/78894/button-examples-gone</link>
        <pubDate>Thu, 02 May 2024 15:28:56 +0000</pubDate>
        <category>Web-site</category>
        <dc:creator>washuit-iamm</dc:creator>
        <guid isPermaLink="false">78894@/forums/discussions</guid>
        <description><![CDATA[<p><a rel="nofollow" href="https://datatables.net/extensions/buttons/examples">https://datatables.net/extensions/buttons/examples</a></p>

<p><img src="https://datatables.net/forums/uploads/editor/x2/x0mkdhc78il9.png" alt="" title="" /></p>
]]>
        </description>
    </item>
    <item>
        <title>Mime type missmatch</title>
        <link>https://next.datatables.net/forums/discussion/78892/mime-type-missmatch</link>
        <pubDate>Thu, 02 May 2024 10:22:58 +0000</pubDate>
        <category>Web-site</category>
        <dc:creator>mbokic</dc:creator>
        <guid isPermaLink="false">78892@/forums/discussions</guid>
        <description><![CDATA[<p><strong>Link to test case</strong>:<br />
<strong>Debugger code (debug.datatables.net)</strong>:<br />
<strong>Error messages shown</strong>:<br />
<strong>Description of problem</strong>:<br />
Hello,<br />
Just posting in case you are not aware but all the examples for editor (<a rel="nofollow" href="https://editor.datatables.net/examples/datatables/mJoin.html)">https://editor.datatables.net/examples/datatables/mJoin.html)</a> are broken with message:<br />
The resource from “<a rel="nofollow" href="https://editor.datatables.net/css/editor.dataTables.css”">https://editor.datatables.net/css/editor.dataTables.css”</a> was blocked due to MIME type (“text/html”) mismatch (X-Content-Type-Options: nosniff).</p>

<p>Thanks <img src="https://next.datatables.net/forums/resources/emoji/smile.png" title=":)" alt=":)" height="20" /></p>
]]>
        </description>
    </item>
    <item>
        <title>Forum category for DataTables 2?</title>
        <link>https://next.datatables.net/forums/discussion/78754/forum-category-for-datatables-2</link>
        <pubDate>Mon, 15 Apr 2024 18:50:50 +0000</pubDate>
        <category>Web-site</category>
        <dc:creator>washuit-iamm</dc:creator>
        <guid isPermaLink="false">78754@/forums/discussions</guid>
        <description><![CDATA[<p><img src="https://datatables.net/forums/uploads/editor/hl/08qz0chtcvr3.png" alt="" title="" /></p>
]]>
        </description>
    </item>
    <item>
        <title>Non-jQuery initialisation examples</title>
        <link>https://next.datatables.net/forums/discussion/78609/non-jquery-initialisation-examples</link>
        <pubDate>Wed, 27 Mar 2024 21:47:06 +0000</pubDate>
        <category>Web-site</category>
        <dc:creator>kthorngren</dc:creator>
        <guid isPermaLink="false">78609@/forums/discussions</guid>
        <description><![CDATA[<p>The Non-jQuery initialisation <a rel="nofollow" href="https://datatables.net/examples/non_jquery/index.html">examples</a> aren't shown as an option from the <a rel="nofollow" href="https://datatables.net/examples/index">examples page</a>.</p>

<p>Kevin</p>
]]>
        </description>
    </item>
    <item>
        <title>Reference documentation for PHP Editor libraries not displaying correctly</title>
        <link>https://next.datatables.net/forums/discussion/78399/reference-documentation-for-php-editor-libraries-not-displaying-correctly</link>
        <pubDate>Wed, 06 Mar 2024 12:17:19 +0000</pubDate>
        <category>Web-site</category>
        <dc:creator>Loren Maxwell</dc:creator>
        <guid isPermaLink="false">78399@/forums/discussions</guid>
        <description><![CDATA[<p>Looks like the .NET and NodeJS libraries are fine, but the PHP one is not displaying correctly:</p>

<p><a rel="nofollow" href="https://editor.datatables.net/docs/2.3.1/php/">https://editor.datatables.net/docs/2.3.1/php/</a></p>
]]>
        </description>
    </item>
    <item>
        <title>Layout doc suggestion</title>
        <link>https://next.datatables.net/forums/discussion/78331/layout-doc-suggestion</link>
        <pubDate>Thu, 29 Feb 2024 01:34:14 +0000</pubDate>
        <category>Web-site</category>
        <dc:creator>kthorngren</dc:creator>
        <guid isPermaLink="false">78331@/forums/discussions</guid>
        <description><![CDATA[<p>Its not intuitive that when placing a feature like <code>search</code> at a non-default location that it will also appear in the default <code>topEnd</code> location unless something else or <code>null</code> is set for that location.  Please provide some documentation around this with a link we can use to point people to.</p>

<p>Kevin</p>
]]>
        </description>
    </item>
    <item>
        <title>Generator doesn't work</title>
        <link>https://next.datatables.net/forums/discussion/76944/generator-doesnt-work</link>
        <pubDate>Sun, 13 Aug 2023 13:23:46 +0000</pubDate>
        <category>Web-site</category>
        <dc:creator>Ficos</dc:creator>
        <guid isPermaLink="false">76944@/forums/discussions</guid>
        <description><![CDATA[<p><strong>Link to test case</strong>: <a rel="nofollow" href="https://www.ficos.nl/test1/adm_client.html" title="https://ficos.nl/test1/adm_client.html"></a><a rel="nofollow" href="https://ficos.nl/test1/adm_client.html">https://ficos.nl/test1/adm_client.html</a><br />
<strong>Debugger code (debug.datatables.net)</strong>:<br />
<strong>Error messages shown</strong>: [HTTP/2 404 Not Found 114ms]<br />
<strong>Description of problem</strong>: test is generated by Generator, but result is not shown (cdn is not found), so the resulting app is not working</p>
]]>
        </description>
    </item>
    <item>
        <title>Feature request: Legacy download builder for 1.10</title>
        <link>https://next.datatables.net/forums/discussion/78201/feature-request-legacy-download-builder-for-1-10</link>
        <pubDate>Sat, 17 Feb 2024 16:01:05 +0000</pubDate>
        <category>Web-site</category>
        <dc:creator>kthorngren</dc:creator>
        <guid isPermaLink="false">78201@/forums/discussions</guid>
        <description><![CDATA[<p>Is it feasible to create a legacy download page for 1.10.  This way we can download all the correct/latest extensions for 1.10 without having to research release notes, etc to find the appropriate versions.  I understand that many of the extension like Select 2.0 will only work with Datatables 2.0.  If not a download page then maybe a page (release notes for 1.10.9 or 1.10.10 for example) that lists the latest versions that can be used with 1.10.</p>

<p>Kevin</p>
]]>
        </description>
    </item>
    <item>
        <title>Editor examples</title>
        <link>https://next.datatables.net/forums/discussion/78173/editor-examples</link>
        <pubDate>Thu, 15 Feb 2024 16:56:16 +0000</pubDate>
        <category>Web-site</category>
        <dc:creator>wblakenc</dc:creator>
        <guid isPermaLink="false">78173@/forums/discussions</guid>
        <description><![CDATA[<p>It seems the editor examples are not working. The page loads but there is no datatable. Also, I noticed clicking on the login button doesn't seem to work either.</p>
]]>
        </description>
    </item>
    <item>
        <title>forum - missing responsive design</title>
        <link>https://next.datatables.net/forums/discussion/77179/forum-missing-responsive-design</link>
        <pubDate>Fri, 15 Sep 2023 11:52:48 +0000</pubDate>
        <category>Web-site</category>
        <dc:creator>ltdeta</dc:creator>
        <guid isPermaLink="false">77179@/forums/discussions</guid>
        <description><![CDATA[<p>Why is the window so small?<br />
More space exists on a desktop pc but the forum width does not scale with the browser window</p>

<p><img src="https://datatables.net/forums/uploads/editor/99/ovyof7berdlh.png" alt="" title="" /></p>
]]>
        </description>
    </item>
    <item>
        <title>Sample error</title>
        <link>https://next.datatables.net/forums/discussion/77061/sample-error</link>
        <pubDate>Wed, 30 Aug 2023 10:35:19 +0000</pubDate>
        <category>Web-site</category>
        <dc:creator>Lapointe</dc:creator>
        <guid isPermaLink="false">77061@/forums/discussions</guid>
        <description><![CDATA[<p>Hi all<br />
In <a rel="nofollow" href="https://editor.datatables.net/examples/inline-editing/fullRow.html" title="https://editor.datatables.net/examples/inline-editing/fullRow.html"></a><a rel="nofollow" href="https://editor.datatables.net/examples/inline-editing/fullRow.html">https://editor.datatables.net/examples/inline-editing/fullRow.html</a> clicking on trash then try to close editor do not run, because inline edit started on trash click<br />
just replace</p>

<pre><code>table.on('click', 'tbody td.row-edit', function (e) {
</code></pre>

<p>with</p>

<pre><code>table.on('click', 'tbody span.edit', function (e) {
</code></pre>

<p>Regards<br />
Bob</p>
]]>
        </description>
    </item>
    <item>
        <title>Download not including styling framework</title>
        <link>https://next.datatables.net/forums/discussion/76715/download-not-including-styling-framework</link>
        <pubDate>Wed, 12 Jul 2023 15:09:29 +0000</pubDate>
        <category>Web-site</category>
        <dc:creator>vince-carrasco</dc:creator>
        <guid isPermaLink="false">76715@/forums/discussions</guid>
        <description><![CDATA[<p>the styling framework is not being added into the download wizard.  Jut me or everyone?</p>
]]>
        </description>
    </item>
    <item>
        <title>ColReorder missing from CDN page</title>
        <link>https://next.datatables.net/forums/discussion/76664/colreorder-missing-from-cdn-page</link>
        <pubDate>Thu, 06 Jul 2023 00:22:03 +0000</pubDate>
        <category>Web-site</category>
        <dc:creator>kthorngren</dc:creator>
        <guid isPermaLink="false">76664@/forums/discussions</guid>
        <description><![CDATA[<p>ColReorder is not on the CDN page <a rel="nofollow" href="https://cdn.datatables.net/">https://cdn.datatables.net/</a> .  Also some of the Release note pages like <a rel="nofollow" href="https://cdn.datatables.net/fixedheader/3.4.0/">FixedHeader</a>, <a rel="nofollow" href="https://cdn.datatables.net/keytable/2.10.0/">KeyTable</a> and <a rel="nofollow" href="https://cdn.datatables.net/responsive/2.5.0/">Responsive</a> have a corrupted page title.</p>

<p>Kevin</p>
]]>
        </description>
    </item>
    <item>
        <title>Quick support option?</title>
        <link>https://next.datatables.net/forums/discussion/76400/quick-support-option</link>
        <pubDate>Mon, 29 May 2023 13:42:06 +0000</pubDate>
        <category>Web-site</category>
        <dc:creator>globalplane</dc:creator>
        <guid isPermaLink="false">76400@/forums/discussions</guid>
        <description><![CDATA[<p>Has quick support been removed? I see a <a rel="nofollow" href="https://datatables.net/manual/tech-notes/10">page</a> that says:</p>

<blockquote>
  <p>SpryMedia Ltd (the company behind DataTables) provides professional support maintenance contracts:</p>
  
  <ul>
  <li><a rel="nofollow" href="https://datatables.net/support/index#Quick-Support">Quick support</a> - for when you need an answer to just one or two questions.</li>
  </ul>
</blockquote>

<p>But the link leads to a page with only the full support packages.</p>
]]>
        </description>
    </item>
    <item>
        <title>CDN request: 1) option w/o styling  2) just styling</title>
        <link>https://next.datatables.net/forums/discussion/75703/cdn-request-1-option-w-o-styling-2-just-styling</link>
        <pubDate>Thu, 09 Mar 2023 17:52:45 +0000</pubDate>
        <category>Web-site</category>
        <dc:creator>lisarush</dc:creator>
        <guid isPermaLink="false">75703@/forums/discussions</guid>
        <description><![CDATA[<p>We will be migrating our dataTables from one type of styling framework to another, with some period of time needing both -- such that 1 styling would be used on some pages &amp; the 2nd styling used on other pages.</p>

<p>It would be great if your CDN builder could provide an option to "minify and/or concat" all the CSS/JS related to just the base code (with no styling framework code at all).<br />
Then an option to "minify and/or concat" only the files related to a specific styling framework.</p>

<p>That way, we could automatically include the base dataTables code.  Then, based on the page template being used, also include the appropriate styling framework code.  (I know that I can download/include all the individual files separately to do this.  I am working on doing this now, but it adds a lot of extra config to our build to concat all the individual files so we can serve a consolidated one.  We also have quite a few mods to the dataTables source JS code that we merge in with each update, so these are much easier with just 1 file.)</p>

<p>Adding these capabilities to the CDN download would be much easier, especially from a maintenance standpoint.  Thanks for considering!</p>

<p>-- Lisa</p>
]]>
        </description>
    </item>
    <item>
        <title>Downloaded ZIP file contains directories with mtime set to 0 (i.e. Jan 1st, 1970)</title>
        <link>https://next.datatables.net/forums/discussion/74909/downloaded-zip-file-contains-directories-with-mtime-set-to-0-i-e-jan-1st-1970</link>
        <pubDate>Wed, 14 Dec 2022 07:34:06 +0000</pubDate>
        <category>Web-site</category>
        <dc:creator>ghherlin</dc:creator>
        <guid isPermaLink="false">74909@/forums/discussions</guid>
        <description><![CDATA[<p>Hallo,</p>

<p>I have just downloaded an update of my Datatables, as a ZIP from page <a rel="nofollow" href="https://datatables.net/download/" title="https://datatables.net/download/"></a><a rel="nofollow" href="https://datatables.net/download/">https://datatables.net/download/</a>.</p>

<p>Having unpacked the ZIP file (in KUbuntu) and run the Gradle task to rebuild my application, Gradle basically crashed with a</p>

<pre><code>Execution failed for task ':jvmProcessResources'.
&gt; Invalid Timestamp -3600000 for 'file '.../resources/DataTables.20221214/KeyTable-2.8.0/js''.
</code></pre>

<p>error.<br />
Google having no idea as to what that meant, I looked at the directory information</p>

<pre><code>stat KeyTable-2.8.0/js/
  File: KeyTable-2.8.0/js/
  Size: 4096            Blocks: 8          IO Block: 4096   directory
Device: 801h/2049d      Inode: 85330982    Links: 2
Access: (0775/drwxrwxr-x)  Uid: ( 1000/  george)   Gid: ( 1000/  george)
Access: 2022-12-14 07:24:55.371334989 +0100
Modify: 1970-01-01 00:00:00.000000000 +0100
Change: 2022-12-14 07:24:55.359334909 +0100
 Birth: 2022-12-14 07:24:55.355334882 +0100

</code></pre>

<p>Oops...<br />
I wondered if there were any others:</p>

<pre><code>find . -mtime +1000 -exec stat {} \; | egrep 'File|Modify'
  File: ./KeyTable-2.8.0/js
Modify: 1970-01-01 00:00:00.000000000 +0100
  File: ./KeyTable-2.8.0/css
Modify: 1970-01-01 00:00:00.000000000 +0100
  File: ./JSZip-2.5.0
Modify: 1970-01-01 00:00:00.000000000 +0100
  File: ./FixedColumns-4.2.1/js
Modify: 1970-01-01 00:00:00.000000000 +0100
  File: ./FixedColumns-4.2.1/css
Modify: 1970-01-01 00:00:00.000000000 +0100
  File: ./Scroller-2.0.7/js
Modify: 1970-01-01 00:00:00.000000000 +0100
  File: ./Scroller-2.0.7/css
Modify: 1970-01-01 00:00:00.000000000 +0100
  File: ./jQuery-3.6.0
Modify: 1970-01-01 00:00:00.000000000 +0100
  File: ./Responsive-2.4.0/js
Modify: 1970-01-01 00:00:00.000000000 +0100
  File: ./Responsive-2.4.0/css
Modify: 1970-01-01 00:00:00.000000000 +0100
  File: ./RowReorder-1.3.1/js
Modify: 1970-01-01 00:00:00.000000000 +0100
  File: ./RowReorder-1.3.1/css
Modify: 1970-01-01 00:00:00.000000000 +0100
  File: ./RowGroup-1.3.0/js
Modify: 1970-01-01 00:00:00.000000000 +0100
  File: ./RowGroup-1.3.0/css
Modify: 1970-01-01 00:00:00.000000000 +0100
  File: ./ColReorder-1.6.1/js
Modify: 1970-01-01 00:00:00.000000000 +0100
  File: ./ColReorder-1.6.1/css
Modify: 1970-01-01 00:00:00.000000000 +0100
  File: ./pdfmake-0.1.36
Modify: 1970-01-01 00:00:00.000000000 +0100
  File: ./SearchPanes-2.1.0/js
Modify: 1970-01-01 00:00:00.000000000 +0100
  File: ./SearchPanes-2.1.0/css
Modify: 1970-01-01 00:00:00.000000000 +0100
  File: ./FixedHeader-3.3.1/js
Modify: 1970-01-01 00:00:00.000000000 +0100
  File: ./FixedHeader-3.3.1/css
Modify: 1970-01-01 00:00:00.000000000 +0100
  File: ./DataTables-1.13.1/js
Modify: 1970-01-01 00:00:00.000000000 +0100
  File: ./DataTables-1.13.1/images
Modify: 1970-01-01 00:00:00.000000000 +0100
  File: ./DataTables-1.13.1/css
Modify: 1970-01-01 00:00:00.000000000 +0100
  File: ./Buttons-2.3.3/js
Modify: 1970-01-01 00:00:00.000000000 +0100
  File: ./Buttons-2.3.3/css
Modify: 1970-01-01 00:00:00.000000000 +0100
  File: ./Select-1.5.0/js
Modify: 1970-01-01 00:00:00.000000000 +0100
  File: ./Select-1.5.0/css
Modify: 1970-01-01 00:00:00.000000000 +0100
  File: ./StateRestore-1.2.0/js
Modify: 1970-01-01 00:00:00.000000000 +0100
  File: ./StateRestore-1.2.0/css
Modify: 1970-01-01 00:00:00.000000000 +0100
  File: ./Editor-2.0.10/js
Modify: 1970-01-01 00:00:00.000000000 +0100
  File: ./Editor-2.0.10/css
Modify: 1970-01-01 00:00:00.000000000 +0100
  File: ./jQueryUI-1.13.2/themes/base/images
Modify: 1970-01-01 00:00:00.000000000 +0100
  File: ./AutoFill-2.5.1/js
Modify: 1970-01-01 00:00:00.000000000 +0100
  File: ./AutoFill-2.5.1/css
Modify: 1970-01-01 00:00:00.000000000 +0100
  File: ./SearchBuilder-1.4.0/js
Modify: 1970-01-01 00:00:00.000000000 +0100
  File: ./SearchBuilder-1.4.0/css
Modify: 1970-01-01 00:00:00.000000000 +0100
  File: ./DateTime-1.2.0/js
Modify: 1970-01-01 00:00:00.000000000 +0100
  File: ./DateTime-1.2.0/css
Modify: 1970-01-01 00:00:00.000000000 +0100

</code></pre>

<p>Might anything be done with your ZIPper to fix this really odd behaviour?</p>

<p>In the interim, and in case another of your users has the same problem sometime,I fixed the mtimes with the mantra:</p>

<pre><code>find . -mtime +1000 -exec touch {}/aaa \; -exec rm {}/aaa \;
</code></pre>

<p>All the best,</p>

<p>George</p>
]]>
        </description>
    </item>
    <item>
        <title>live.datatables.net redirected you too many times.</title>
        <link>https://next.datatables.net/forums/discussion/74680/live-datatables-net-redirected-you-too-many-times</link>
        <pubDate>Thu, 17 Nov 2022 09:45:33 +0000</pubDate>
        <category>Web-site</category>
        <dc:creator>tangerine</dc:creator>
        <guid isPermaLink="false">74680@/forums/discussions</guid>
        <description><![CDATA[<p>I'm getting this:</p>

<p>This page isn’t working<br />
live.datatables.net redirected you too many times.<br />
Try clearing your cookies.<br />
ERR_TOO_MANY_REDIRECTS</p>

<p>when trying to access live.datatables.net. I have cleared cookies and done hard browser refreshes.<br />
Any ideas?</p>
]]>
        </description>
    </item>
    <item>
        <title>Manual page display issue</title>
        <link>https://next.datatables.net/forums/discussion/74478/manual-page-display-issue</link>
        <pubDate>Fri, 28 Oct 2022 15:31:53 +0000</pubDate>
        <category>Web-site</category>
        <dc:creator>kthorngren</dc:creator>
        <guid isPermaLink="false">74478@/forums/discussions</guid>
        <description><![CDATA[<p><a rel="nofollow" href="https://datatables.net/manual/index">https://datatables.net/manual/index</a></p>

<p>Hovering End Users and Developers hides text (links) in the panel to the right, for example:</p>

<p><img src="https://datatables.net/forums/uploads/editor/j8/i0zqdk5lg989.png" alt="" title="" /></p>

<p>Kevin</p>
]]>
        </description>
    </item>
    <item>
        <title>Links broken</title>
        <link>https://next.datatables.net/forums/discussion/74331/links-broken</link>
        <pubDate>Wed, 12 Oct 2022 09:31:22 +0000</pubDate>
        <category>Web-site</category>
        <dc:creator>Lapointe</dc:creator>
        <guid isPermaLink="false">74331@/forums/discussions</guid>
        <description><![CDATA[<p>not working<br />
<a rel="nofollow" href="https://datatables.net/reference/option/buttons.today">https://datatables.net/reference/option/buttons.today</a> FROM <a rel="nofollow" href="https://datatables.net/extensions/datetime/option/buttons.clear">https://datatables.net/extensions/datetime/option/buttons.clear</a><br />
<a rel="nofollow" href="https://datatables.net/reference/option/buttons.today">https://datatables.net/reference/option/buttons.today</a> and <a rel="nofollow" href="https://datatables.net/reference/option/buttons.clear">https://datatables.net/reference/option/buttons.clear</a> FROM <a rel="nofollow" href="https://datatables.net/extensions/datetime/examples/initialisation/buttons.html">https://datatables.net/extensions/datetime/examples/initialisation/buttons.html</a></p>
]]>
        </description>
    </item>
    <item>
        <title>Markdown documentation for Editor in forum</title>
        <link>https://next.datatables.net/forums/discussion/73609/markdown-documentation-for-editor-in-forum</link>
        <pubDate>Fri, 05 Aug 2022 11:39:39 +0000</pubDate>
        <category>Web-site</category>
        <dc:creator>Loren Maxwell</dc:creator>
        <guid isPermaLink="false">73609@/forums/discussions</guid>
        <description><![CDATA[<p>On the <a rel="nofollow" href="https://datatables.net/manual/tech-notes/8">Markdown instructions for the forum</a>, the instructions say:</p>

<blockquote>
  <p>The '-api x', '-event x', '-init x' and '-button x' code links can optionally be prefixed with an e to indicate that it is an Editor API, event, option or button that is being documented (Editor has its own documentation).</p>
</blockquote>

<p>I request an example after that to show specifically where the e should go.</p>

<p>I kept thinking the snippet had to start with a dash so I went though:<br />
* -e-api x<br />
* -eapi x<br />
* -e api x<br />
* -api e-x<br />
* -api ex<br />
* -api e x</p>

<p>I finally realized 'e-api x' is correct!</p>
]]>
        </description>
    </item>
    <item>
        <title>Joined table examples seem to be broken</title>
        <link>https://next.datatables.net/forums/discussion/72974/joined-table-examples-seem-to-be-broken</link>
        <pubDate>Fri, 03 Jun 2022 21:27:38 +0000</pubDate>
        <category>Web-site</category>
        <dc:creator>tscully</dc:creator>
        <guid isPermaLink="false">72974@/forums/discussions</guid>
        <description><![CDATA[<p>Hello!</p>

<p>It looks like the examples using one-to-many joined tables is broken on the DataTables site. The query pulling joined data seems to be erroring out.</p>

<p>Here are a couple examples, of some broken Examples <img src="https://next.datatables.net/forums/resources/emoji/smile.png" title=":smile:" alt=":smile:" height="20" />:</p>

<p><a rel="nofollow" href="https://editor.datatables.net/examples/simple/join.html">https://editor.datatables.net/examples/simple/join.html</a><br />
<a rel="nofollow" href="https://editor.datatables.net/examples/datatables/select.html">https://editor.datatables.net/examples/datatables/select.html</a></p>

<p>Thanks!<br />
-Tim.</p>
]]>
        </description>
    </item>
    <item>
        <title>How do you login to live.datatables.net ?</title>
        <link>https://next.datatables.net/forums/discussion/72471/how-do-you-login-to-live-datatables-net</link>
        <pubDate>Wed, 20 Apr 2022 18:19:37 +0000</pubDate>
        <category>Web-site</category>
        <dc:creator>desperado</dc:creator>
        <guid isPermaLink="false">72471@/forums/discussions</guid>
        <description><![CDATA[<p>When I used to visit live.datatables.net there would be a login option in the upper right so I can access my saved bins.</p>

<p>Now I can't seem to find a way to login because there is only a help link in the upper right.</p>

<p><img src="https://datatables.net/forums/uploads/editor/ih/j2bbj49sttco.png" alt="" title="" /></p>
]]>
        </description>
    </item>
   </channel>
</rss>
